在三星C6112手机上,我面临着奇怪的问题。
我的midlet应用程序正在尝试连接到HTTPS网址。 (它在带有Versign证书的IIS 6.0 Web服务器上托管)。
我使用POST方法发送数据。完成写入数据后,我调用 outputstream.flush()和 outputstream.close()方法。这两种方法给出了“ InterruptedIOException 或 IOException:TCP open ”。
如果我评论两种方法,即.flush()和.close(),hc.openInputStream();抛出相同的异常。
以下示例代码,如果出现问题,请告诉我。
InputStream is = null;
OutputStream dos = null;
HttpConnection hc = null;
try {
hc = (HttpConnection) Connector.open(url,Connector.READ_WRITE,true);
byte b1[] = "Hello_World".getBytes();
hc.setRequestMethod(HttpConnection.POST);
dos = hc.openOutputStream();
int i = 0;
while (i < b1.length) {
dos.write(b1[i]);
i++;
}
dos.write("\r\n".getBytes());
dos.flush(); // gives **InterruptedIOException** or **IOException:TCP open**
dos.close(); // gives **InterruptedIOException** or **IOException:TCP open**
is = hc.openInputStream();
byte b[];
ByteArrayOutputStream bStrm = new ByteArrayOutputStream();
int ch, downloadedData=0;
while ((ch = is.read()) != -1) {
downloadedData++;
bStrm.write(ch);
}
b = bStrm.toByteArray();
} catch (javax.microedition.pki.CertificateException ce) {
System.out.println("CertificateException in " + ce.toString());
} catch (SecurityException se) {
System.out.println("SecurityException: ", se.toString());
} catch (ConnectionNotFoundException cnfe) {
System.out.println("ConnectionNotFoundException: ", cnfe.toString());
} catch (IOException ioe) {
System.out.println("IOException: ", ioe.toString() + ioe.getMessage());
} catch (Exception e) {
System.out.println("Exception: ", e.toString());
} finally {
if (hc != null) {
try {
hc.close();
hc = null;
} catch (Exception e) {
e.printStackTrace();
System.out.println("finally hc.close(); IOException " + e.getMessage() + " " + e.toString());
}
}
if(is !=null) {
try {
is.close();
} catch (Exception e) {
e.printStackTrace();
System.out.println("finally is.close(); Exception " + e.getMessage() + " " + e.toString());
}
}
}
请告诉我如何处理三星j2me手机。
答案 0 :(得分:0)
试试这个,
代替,
dos = hc.openOutputStream();
试试这个,
dos = (OutputStream) hc.openOutputStream();
而不是
is = hc.openInputStream();
试试这个,
is = (InputStream) hc.openInputStream();
但我建议您使用DataInputStream
&amp;这些操作的DataOutputStream
类。