摘要: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.
阅读全文
09 2011 档案
摘要:错误信息:Java compiler level does not match the version of the installed Java project facet.解决方法:右键点击出错的工程,选择属性,在弹出的preference中找到Project Facets,然后可以看到当前工程使用的jdk版本号,再看看你当前Studio中Install JREs,这两个应该不同,你把facets中的java版本修改为与你的jre版本一致就可以了。
阅读全文