摘要:
1. String --> InputStreampublic static InputStream String2InputStream(String str) throws IOException{ ByteArrayInputStream stream = new ByteArrayInputStream(str.getBytes()); return stream;} 2. InputStream --> Stringpublic static String inputStream2String(InputStream is) throws IOException{ By. 阅读全文
2011年9月16日 #