黑马程序员_学习笔记第24天——网络编程

本文分享了ASP.NET、Android、iOS开发技术,包括上传图片、图形化界面及用户登录验证等内容。
---------------------- ASP.Net+Android+IOS开发、 href="http://edu.csdn.net"target="blank">.Net培训、期待与您交流! ----------------------

1、练习上传图片

public class UploadPicClientDemo {

	public static void main(String[] args)throws Exception {
		if(args.length!=1){
			System.out.println("请选择一个jpg格式的图片");
			return;
		}
		File file = new File(args[0]);
		if(!(file.exists()&&file.isFile())){
			System.out.println("该文件有问题,要么不存在,要么不是文件");
			return;
		}
		if(!file.getName().endsWith(".jpg")){
			System.out.println("图片格式错误,请重新选择");
			return;
		}
		if(file.length()>1024*1024*5){
			System.out.println("文件过大,没安好心");
			return;
		}
		
		Socket s = new Socket("192.168.1.102",10001);
		FileInputStream fis = new FileInputStream(file);
		OutputStream out = s.getOutputStream();
		byte[] buf = new byte[1024];
		int len = 0;
		while((len=fis.read(buf))!=-1) {
			out.write(buf,0,len);
		}
		s.shutdownOutput();
		InputStream in = s.getInputStream();
		byte[] bufIn = new byte[1024];
		int num = in.read(bufIn);
		System.out.println(new String(bufIn,0,num));
		fis.close();
		s.close();
	}
}

/*
服务端:
这个有局限性,当A客户端连接上以后,被服务端获取到,服务端执行具体流程,这时B客户端连接,只有等待
因为服务端还没有处理完A客户端的请求,还没有循环回来执行下次accept方法,所以,暂时获取不到B客户端对象、

那么为了可以让多个客户端同时并发访问服务端,服务端最好就是将每个客户端封装到一个单独的线程中,这样,就可以同时处理多个客户端请求。
*/

public class UploadPicServerDemo {

	public static void main(String[] args) throws Exception{
		ServerSocket ss = new ServerSocket(10000);
		while(true) {
			Socket s = ss.accept();
			new Thread(new PicThread(s)).start();
		}
		

		//ss.close();
	}
}
class PicThread implements Runnable{
	private Socket s ;
	PicThread(Socket s) {
		this.s = s ;
	}
	public void run(){
		int count = 1;//为了保存文件命名方便,定义计数器
		String ip = s.getInetAddress().getHostAddress();
		try {
			System.out.println(ip+"....connected");
			InputStream in = s.getInputStream();
			
			File file = new File(ip+"("+(count)+")"+".jpg");
			while(file.exists()){
				file = new File(ip+"("+(count++)+")"+".jpg");
			}
			
			FileOutputStream fos = new FileOutputStream (file);
			byte[] buf = new byte[1024];
			int len = 0;
			while((len=in.read(buf))!=-1){
				fos.write(buf,0,len);
			}
			OutputStream out = s.getOutputStream();
			out.write("上传成功".getBytes());
			fos.close();
			s.close();
		}catch(Exception e){
			throw new RuntimeException(ip+"上传失败");
		}
		
	}
}
/*
客户端通过键盘录入用户名,服务端对这个用户名进行校验
如果该用户存在,在服务端显示xxx,已登录,并在客户端显示xxx,欢迎光临
如果该用户不存在,在服务端显示xxx,尝试登录,并在客户端显示xxx,该用户不存在
最多就登录三次
*/
public class UserLoginClientDemo {

	public static void main(String[] args)throws Exception {
		Socket s = new Socket("127.0.0.1",10000);
		BufferedReader bufr = new BufferedReader(new InputStreamReader(System.in));
		PrintWriter out = new PrintWriter(s.getOutputStream(),true);
		BufferedReader bufIn =new BufferedReader(new InputStreamReader(s.getInputStream()));
		for(int x = 0; x<3 ; x++){
			String line = bufr.readLine();
			if(line==null)
				break;
			out.println(line);
			String info = bufIn.readLine();
			System.out.println("info:"+info);
			if(info.contains("欢迎"))
				break;
		}
		bufr.close();
		s.close();

	}

}
public class UserLoginServerDemo {

	public static void main(String[] args) throws Exception{
		ServerSocket ss = new ServerSocket(10000);
		while(true){
			Socket s = ss.accept();
			new Thread(new UserThread(s)).start();
		}
	}
}
class UserThread implements Runnable {
	private Socket s;
	UserThread(Socket s ){
		this.s = s ;
	}
	public void run() {
		String ip = s.getInetAddress().getHostAddress();
		System.out.println(ip+"...connected");
		try{
			for(int x =0; x<3; x++){
				BufferedReader bufIn = new BufferedReader(new InputStreamReader(s.getInputStream()));
				String name = bufIn.readLine();
				if(name==null)
					break;
				BufferedReader bufr = new BufferedReader(new FileReader("user.txt"));
				PrintWriter out = new PrintWriter(s.getOutputStream(),true);
				String line = null;
				boolean flag = false;
				while((line=bufr.readLine())!=null) {
					if(line.equals(name)){
						flag = true;
						break;
					}
				}
				if(flag){
					System.out.println(name+",已登录");
					out.println(name+",欢迎光临");
					break;
				}else{
					System.out.println(name+",尝试登录");
					out.println(name+",用户名不存在");
				}
			}
			s.close();
		}catch(Exception e){
			throw new RuntimeException(ip+"校验失败");
		}
	}
}

2、图形化界面

public class MyIEByGUI2 {
	
	private Frame f;
	private TextField tf;
	private Button but;
	private TextArea ta;
	
	private Dialog d;
	private Label lab;
	private Button okBut;
	
	MyIEByGUI2() {
		init();
	}
	
	public void init() {
		f = new Frame("my window");
		f.setBounds(300,100,600,500);
		f.setLayout(new FlowLayout());
		
		tf = new TextField(60);
		
		but = new Button("转到");
		
		ta = new TextArea(25,70);
		
		d = new Dialog(f,"提示信息-self",true);
		d.setBounds(400,200,240,150);
		d.setLayout(new FlowLayout());
		lab = new Label();
		okBut = new Button("确定");
		
		d.add(lab);
		d.add(okBut);
		
		f.add(tf);
		f.add(but);
		f.add(ta);
		
		myEvent();
		f.setVisible(true);
	}
	private void myEvent() {
		d.addWindowListener(new WindowAdapter(){
			public void windowClosing(WindowEvent e) {
				d.setVisible(false);
			}
		});
		okBut.addActionListener(new ActionListener(){
			public void actionPerformed(ActionEvent e){
				d.setVisible(false);
			}
		});
		tf.addKeyListener(new KeyAdapter(){
			public void keyPressed(KeyEvent e) {
				if(e.getKeyCode()==KeyEvent.VK_ENTER)
					try {
						showDir();
					} catch (Exception e1) {
						// TODO Auto-generated catch block
						e1.printStackTrace();
					}
			}
		});
		but.addActionListener(new ActionListener(){
			public void actionPerformed(ActionEvent e){
				
				try {
					showDir();
				} catch (Exception e1) {
					// TODO Auto-generated catch block
					e1.printStackTrace();
				}
				//System.out.println(text);
				//tf.setText("");
			}
		});
		f.addWindowListener(new WindowAdapter(){
			public void windowClosing(WindowEvent e) {
				System.exit(0);
			}
		});
		
	}
	private void showDir() throws Exception{
		ta.setText("");
		String urlPath = tf.getText();//http://192.168.1.102:8080/myweb/Demo1.html
		URL url = new URL(urlPath);
		URLConnection conn = url.openConnection();
		InputStream in = conn.getInputStream();
		byte[] buf = new byte[1024];
		int len = in.read(buf);
		ta.setText(new String(buf,0,len));
	}

	public static void main(String[] args) {
		new MyIEByGUI2();

	}

}



---------------------- ASP.Net+Android+IOS开发、 href="http://edu.csdn.net"target="blank">.Net培训、期待与您交流! ----------------------详细请查看: http://edu.csdn.net
内容概要:本文档聚焦于通信系统中的调制解调技术与Turbo码的结合应用,系统研究了GMSK调制的二比特差分解调方法,以及Turbo码分别与BPSK、GMSK调制方式联合使用的系统性能。通过Matlab平台实现了完整的通信链路仿真,涵盖信号调制、信道编码、解调解码及误码率分析等关键环节,深入探讨了不同调制体制下Turbo编码系统的抗干扰能力与频谱效率表现。研究不仅提供了算法实现代码,还包含了详细的性能对比分析,有助于理解现代数字通信中高效编码调制技术的设计原理与工程实现。此外,文档附带多个相关科研方向的仿真案例,展现出广泛的技术延展性与实际应用价值。; 适合人群:具备通信原理、数字信号处理等相关基础知识,熟悉Matlab编程环境,正在从事无线通信系统仿真、信道编码理论研究或相关领域科研工作的研究生、高校教师及工程技术研究人员。; 使用场景及目标:①深入掌握GMSK调制与Turbo码相结合的技术机制,理解其在提高通信可靠性与频谱利用率方面的优势;②熟练运用Matlab构建完整的数字通信仿真系统,完成从调制编码到解调译码的全流程建模与性能评估;③为无人机通信、卫星通信、移动通信等实际应用场景下的高可靠传输系统设计提供理论支持与算法参考。; 阅读建议:建议结合所提供的Matlab代码逐模块运行与调试,重点关注GMSK差分解调过程与Turbo译码的迭代收敛特性,同时可参考文档中列出的其他研究课题拓展仿真范围,提升综合科研与工程实践能力。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值