我正在尝试通过 wifi 连接两个 android 设备并发送一些数据。在客户端,套接字显示已连接,但服务器并未提前接受。我什至不确定这怎么可能。下面是我的服务器和客户端代码。我已经使用在其中一台设备上运行的 wifi 热点连接了这两个设备。
服务器端:
try
{
ServerSocket servsock = new ServerSocket(4149);
Log.d("VR","Waiting");
text.setText("waiting"); //code reaching upto here
Socket sock = servsock.accept();
//System.out.println("Accepted connection11 : " + sock);
text.setText("this is acc"+servsock);
//Log.d("VR","Accepted");
text.setText("accepted");
// receive file
byte [] mybytearray = new byte [filesize];
InputStream is = sock.getInputStream();
FileOutputStream fos = new FileOutputStream("/sdcard/WebOffice.jpg"); // destination path and name of file
BufferedOutputStream bos = new BufferedOutputStream(fos);
bytesRead = is.read(mybytearray,0,mybytearray.length);
current = bytesRead;
do {
bytesRead =
is.read(mybytearray, current, (mybytearray.length-current));
if(bytesRead >= 0) current += bytesRead;
} while(bytesRead > -1);
bos.write(mybytearray, 0 , current);
bos.flush();
long end = System.currentTimeMillis();
System.out.println(end-start);
bos.close();
sock.close();
Log.d("VR","Socket closed");
Log.d("VR","image should be loaded by now");
text.setText("image should be loaded by now");
Intent i = new Intent(this,ImageDisplay.class);
startActivity(i);
}
catch (Exception e) {
// TODO: handle exception
}
客户端:
尝试 {
ThreadPolicy tp = ThreadPolicy.LAX;
StrictMode.setThreadPolicy(tp);
ip = et.getText().toString();
sock = new Socket("192.168.43.182",4149);
status.setText("connecting");
status.setText("connected"+sock);
System.out.println("Connecting...");
// sendfile
File myFile = new File (selectedImagePath);
byte [] mybytearray = new byte [(int)myFile.length()];
FileInputStream fis = new FileInputStream(myFile);
BufferedInputStream bis = new BufferedInputStream(fis);
bis.read(mybytearray,0,mybytearray.length);
OutputStream os = sock.getOutputStream();
System.out.println("Sending...");
os.write(mybytearray,0,mybytearray.length);
os.flush();
sock.close();
//Intent i = new Intent(Sender.this,ImageReceive.class);
//startActivity(i);
} catch (UnknownHostException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}