java怎么自定义一个数据包并把它发送出去?
端口9600发到主机地址192.168.0.110(随便一台主机都行,主要是定义这个包部分,每个部分可以用0暂时填充一下。)包格式如图(急!!向各位大神神求助!)最好有详...
端口9600发到主机地址192.168.0.110(随便一台主机都行,主要是定义这个包部分,每个部分可以用0暂时填充一下。)包格式如图(急!! 向各位大神神求助!)
最好有详细的代码实现,把这个自定义包的每一部分按顺序封装起来(不知道的部分例如DIP留出空间填0就可以了),用socket根据目的主机地址端口号发出去就可以了
发出去 展开
最好有详细的代码实现,把这个自定义包的每一部分按顺序封装起来(不知道的部分例如DIP留出空间填0就可以了),用socket根据目的主机地址端口号发出去就可以了
发出去 展开
展开全部
客户端代码
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
import java.io.DataOutputStream;
import java.io.File;
import java.io.FileInputStream;
import java.net.InetSocketAddress;
import java.net.Socket;
public class Client {
public static void main(String[] args) {
int length = 0;
byte[] sendBytes = null;
Socket socket = null;
DataOutputStream dos = null;
FileInputStream fis = null;
try {
try {
socket = new Socket();
socket.connect(new InetSocketAddress("192.168.0.104", 3000),
10 * 1000);
dos = new DataOutputStream(socket.getOutputStream());
File file = new File("Moon.zip");
fis = new FileInputStream(file);
sendBytes = new byte[10240];
while ((length = fis.read(sendBytes, 0, sendBytes.length)) > 0) {
dos.write(sendBytes, 0, length);
dos.flush();
}
} finally {
if (dos != null)
dos.close();
if (fis != null)
fis.close();
if (socket != null)
socket.close();
}
} catch (Exception e) {
e.printStackTrace();
}
}
}
//////////////////////////////////////////////////////////
服务器代
import java.net.*;
import java.io.*;
public class Server implements Runnable {
public static void main(String[] args) {
try {
final ServerSocket server = new ServerSocket(3000);
Thread th = new Thread(new Runnable() {
public void run() {
while (true) {
try {
System.out.println("开始监听...");
Socket socket = server.accept();
System.out.println("有链接");
receiveFile(socket);
} catch (Exception e) {
}
}
}
});
th.run(); //启动线程运行
} catch (Exception e) {
e.printStackTrace();
}
}
public void run() {
}
public static void receiveFile(Socket socket) {
byte[] inputByte = null;
int length = 0;
DataInputStream dis = null;
FileOutputStream fos = null;
try {
try {
dis = new DataInputStream(socket.getInputStream());
fos = new FileOutputStream(new File("receive.MV"));
inputByte = new byte[1024];
System.out.println("开始接收数据...");
while ((length = dis.read(inputByte, 0, inputByte.length)) > 0) {
System.out.println(length);
fos.write(inputByte, 0, length);
fos.flush();
}
System.out.println("完成接收");
} finally {
if (fos != null)
fos.close();
if (dis != null)
dis.close();
if (socket != null)
socket.close();
}
} catch (Exception e) {
}
}
}
码
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
import java.io.DataOutputStream;
import java.io.File;
import java.io.FileInputStream;
import java.net.InetSocketAddress;
import java.net.Socket;
public class Client {
public static void main(String[] args) {
int length = 0;
byte[] sendBytes = null;
Socket socket = null;
DataOutputStream dos = null;
FileInputStream fis = null;
try {
try {
socket = new Socket();
socket.connect(new InetSocketAddress("192.168.0.104", 3000),
10 * 1000);
dos = new DataOutputStream(socket.getOutputStream());
File file = new File("Moon.zip");
fis = new FileInputStream(file);
sendBytes = new byte[10240];
while ((length = fis.read(sendBytes, 0, sendBytes.length)) > 0) {
dos.write(sendBytes, 0, length);
dos.flush();
}
} finally {
if (dos != null)
dos.close();
if (fis != null)
fis.close();
if (socket != null)
socket.close();
}
} catch (Exception e) {
e.printStackTrace();
}
}
}
//////////////////////////////////////////////////////////
服务器代
import java.net.*;
import java.io.*;
public class Server implements Runnable {
public static void main(String[] args) {
try {
final ServerSocket server = new ServerSocket(3000);
Thread th = new Thread(new Runnable() {
public void run() {
while (true) {
try {
System.out.println("开始监听...");
Socket socket = server.accept();
System.out.println("有链接");
receiveFile(socket);
} catch (Exception e) {
}
}
}
});
th.run(); //启动线程运行
} catch (Exception e) {
e.printStackTrace();
}
}
public void run() {
}
public static void receiveFile(Socket socket) {
byte[] inputByte = null;
int length = 0;
DataInputStream dis = null;
FileOutputStream fos = null;
try {
try {
dis = new DataInputStream(socket.getInputStream());
fos = new FileOutputStream(new File("receive.MV"));
inputByte = new byte[1024];
System.out.println("开始接收数据...");
while ((length = dis.read(inputByte, 0, inputByte.length)) > 0) {
System.out.println(length);
fos.write(inputByte, 0, length);
fos.flush();
}
System.out.println("完成接收");
} finally {
if (fos != null)
fos.close();
if (dis != null)
dis.close();
if (socket != null)
socket.close();
}
} catch (Exception e) {
}
}
}
码
展开全部
java本身没有办法直接发IP包,但你可以用java的扩展工具来做。JPCAP就是JAVA下最好的网络开发工具之一,其实是用c写了一堆给java调用的功能,功能很强大。搜索 "jpcap 教程" 有你想要的例子,修改一下估计就差不多了。
更多追问追答
追问
java不可以构造这么一个自定义的包么?socket不就可以把它发出去么?
追答
java只能构造tcp或者udp的包。而且也很容易,你提问的这种要求通常是要求直接做IP包。
嗯,你还是去确认一下吧,如果是可以用UDP包,那就太简单了,搜索”DatagramPacket“,无数的资料和例子,而且代码很简短
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
用 socket啊 用流传进去就行了
追问
我就是不会定义这个自定义的包用java实现,然后交给socket传出去我会。你能给我写一下定义这个包并封装他的代码么?
追答
Socket s = new Socket("127.0.0.1", 7894);
InputStream sis = s.getInputStream();
OutputStream sos = s.getOutputStream();
PrintWriter out = new PrintWriter(sos);
out.write("内容");
out.flush();
如上 s 获得socket客户端 sis 跟sos都是这个客户端读入和写出的流,然后像OutputStream咱们肯定用不惯也不方便,然后封装一下 成为out你就可以直接操作out来发送东西 至于后面两句就是和流有关系的了你自己看着办。
觉得没问题的话请采纳
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
创建流,把信息写到流里面
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询