以下是代码段:
StreamConnection st_connect=(StreamConnection)Connector.open(connectionURL);
OutputStream outStream=st_connect.openOutputStream();
PrintWriter pWriter=new PrintWriter(new OutputStreamWriter(outStream));
pWriter.write("Test\r\n");
据我所知,OutputStream
与PrintStream
一起使用。如果这是真的,那么为什么在这种情况下使用PrintWriter
引用呢?供您参考,这是基于SPP的蓝牙客户端应用程序的一部分。