标签:解析 static fileinput ted 应用 col code int bsp
这个功能是JSON数据写入到Properties工具封装,应用场景就是大数据,VR数据展示.JSON数据写入到Properties文件以后,VR会解析Properties生成对应的模型图
import net.sf.json.JSONObject; import java.io.*; import java.util.Iterator; import java.util.Properties; public class JsonToPropUtils {
public static void jsonToProp(String jsonStr,String Path) { JSONObject jsonObj=JSONObject.fromObject(jsonStr); File file = new File(Path); try { OutputStream os = new FileOutputStream(Path); InputStream is = new FileInputStream(file); Properties prop=new Properties(); prop.load(is); Iterator it =jsonObj.keys(); while(it.hasNext()){ String key=(String) it.next(); String value=(String)jsonObj.get(key); prop.setProperty(key, value); } prop.store(os, null); is.close(); os.close(); } catch (FileNotFoundException e) { // TODO Auto-generated catch block e.printStackTrace(); } catch (IOException e) { // TODO Auto-generated catch block e.printStackTrace(); } } //主方法 public static void main(String[] args) { String jsonStr="{‘key‘:‘1‘,‘name‘:‘liuli‘}"; jsonToProp(jsonStr,"Pro.properties"); } }
标签:解析 static fileinput ted 应用 col code int bsp
原文地址:https://www.cnblogs.com/ComputerVip/p/11599541.html