这是代码片段:
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 的蓝牙客户端应用程序的一部分。