java26

该博客展示了Java网络编程的基础应用,包括服务器端和客户端的实现,实现了简单的聊天功能。同时,通过InetAddress类查询了本地及网站的IP地址信息。此外,还演示了如何通过URL获取文件内容,展示了一些关键的HTTP头信息。
摘要由CSDN通过智能技术生成

一.学习内容
网络编程
练习代码
(1)服务器端代码

package com.demo02;

import java.io.*;
import java.net.*;
import java.util.*;
public class ServerDemo {
public static void main(String[] args) {
	try (
		ServerSocket server =new ServerSocket(4259);
		Socket socket=server.accept();
		BufferedReader is=new BufferedReader(new InputStreamReader(socket.getInputStream()));
		PrintWriter os = new PrintWriter(socket.getOutputStream());
		Scanner input=new Scanner(System.in);
		){
		System.out.println("客户端:"+is.readLine());
		System.out.println("服务器端:");
		String line=input.nextLine();
		while(!line.equals("bye")){
			os.println(line);
			os.flush();
			System.out.println("客户端:"+is.readLine());
			System.out.println("服务器端:");
			line=input.nextLine();
		}
	}catch(IOException e) {
		System.out.println("发生异常:"+e);
	}
}
}

(2)客户端代码

package com.demo02;
import java.io.*;
import java.net.*;
import java.util.*;

public class ClinentDemo {
public static void main(String[] args) {
	try(
		Socket socket=new Socket("127.0.0.1",4259);
		BufferedReader is=new BufferedReader(new InputStreamReader(socket.getInputStream()));
		PrintWriter os=new PrintWriter(socket.getOutputStream());
		Scanner input=new Scanner(System.in);
		){
		System.out.println("客户端:");
		String line=input.nextLine();
		while(!line.equals("bye")){
			os.println(line);
			os.flush();
			System.out.println("服务器端:"+is.readLine());
			System.out.println("客户端:");
			line=input.nextLine();
		}
	}catch(IOException e) {
		System.out.println("发生异常:"+e);
	}
}
}

(3)查询IP

package com.demo02;
import java.net.InetAddress;
import java.net.UnknownHostException;

public class FindIpDemo {
 public static void main(String[] args) {
	try {//查询网络地址
		InetAddress idAddress1 =InetAddress.getByName("127.0.0.1");
		System.out.println(idAddress1);
		InetAddress idAddress2=InetAddress.getLocalHost();
		System.out.println(idAddress2);
		InetAddress idAddress3=InetAddress.getByName("localhaost");
		System.out.println(idAddress3);
		//查询网站地址
		InetAddress idAddress4=InetAddress.getByName("www.baidu.com");
		System.out.println(idAddress4);
        //常用方法		System.out.println(idAddress4.getAddress());
		System.out.println(idAddress4.getHostAddress());
		System.out.println(idAddress4.getHostName());
		System.out.println(idAddress4.getCanonicalHostName());
		System.out.println();
	}catch(UnknownHostException e) {
		e.printStackTrace();
	}
}
}

(4)通过URL获取文件内容

package com.demo02;

import java.io.IOException;
import java.net.URL;
import java.net.URLConnection;
import java.util.Date;
public class MyURL {
void display() {
	byte buffer[]=new byte[50];
	System.out.println("请你输入要获取文件的URL地址");
	try {
		int count=System.in.read(buffer);
		String addr=new String(buffer,0,count);
		URL url=new URL(addr);
		URLConnection c =url.openConnection();
	    c.connect();
		System.out.println("内容类型:"+c.getContentType());
		System.out.println("内容编号:"+c.getContentEncoding());
		System.out.println("内容长度:"+c.getContentLength());
		System.out.println("创建日期:"+new Date(c.getDate()));
		System.out.println("最后修改日期:"+new Date(c.getLastModified()));
		System.out.println("终止日期:"+new Date(c.getExpiration()));
	}catch(IOException e) {
		e.printStackTrace();
	}
}
public static void main(String[] args) {
	MyURL app=new MyURL();
	app.display();
}
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值