Android POST java.io.FileNotFoundException: http://
您好,我正在尝试通过 POST 在 andriod 中发送字节 [] byt ia get java.io.FileNotFoundException: http://xxx.xxx .xx... ,当代码到达 inputStream = connection.getInputStream(); 时出现异常
有什么想法吗?
byte[] array = new byte[]{1,1,2,3,4,4};
String connectionString = "http://" + url + ":" + port + "/" + uploadApp;
URL urle = new URL(connectionString);
URLConnection httppost = urle.openConnection();
connection = (HttpURLConnection) httppost;
connection.setDoInput(true);
connection.setDoOutput(true);
connection.setRequestMethod("POST");
connection.setRequestProperty("User-Agent", "Tranz-Version-t1.914");
connection.setRequestProperty("Accept_Language", "en-US");
connection.setRequestProperty("Content-Type", "application/x-www-form-urlencoded");
outputStream = connection.getOutputStream();
outputStream.write(array);
outputStream.flush();
outputStream.close();
inputStream = connection.getInputStream(); // here i got the eception
Hi i am trying to send bytes[] via POST in andriod byt i a get java.io.FileNotFoundException: http://xxx.xxx.xx... , i got the exception when the code reach inputStream = connection.getInputStream();
any ideas ?
byte[] array = new byte[]{1,1,2,3,4,4};
String connectionString = "http://" + url + ":" + port + "/" + uploadApp;
URL urle = new URL(connectionString);
URLConnection httppost = urle.openConnection();
connection = (HttpURLConnection) httppost;
connection.setDoInput(true);
connection.setDoOutput(true);
connection.setRequestMethod("POST");
connection.setRequestProperty("User-Agent", "Tranz-Version-t1.914");
connection.setRequestProperty("Accept_Language", "en-US");
connection.setRequestProperty("Content-Type", "application/x-www-form-urlencoded");
outputStream = connection.getOutputStream();
outputStream.write(array);
outputStream.flush();
outputStream.close();
inputStream = connection.getInputStream(); // here i got the eception
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论