zoukankan      html  css  js  c++  java
  • java 读取json

    http://blog.csdn.net/5iasp/article/details/38545875

    private void readAccount() throws IOException {

    ByteArrayOutputStream outputStream = new ByteArrayOutputStream();
    byte[] buffer = new byte[1024];
    InputStream fileInputStream = this.getClass().getResourceAsStream("/account.json");
    while (fileInputStream.read(buffer) != -1) {
    outputStream.write(buffer);
    }
    String accountJson = outputStream.toString("UTF-8").trim();
    JSONArray jsonArray = new JSONArray(accountJson);
    log.info(jsonArray.toString());
    for (int index=0; index < jsonArray.length(); index++) {
    JSONObject jsonObject = jsonArray.getJSONObject(index);
    String account = jsonObject.getString("account");
    String password = jsonObject.getString("password");
    String ip = jsonObject.getString("ip");
    String spNum = jsonObject.getString("spNum");
    String spId = jsonObject.getString("spId");
    this.passwordHash.put(account, password);
    this.ipaddressHash.put(account, ip);
    this.spnumHash.put(account, spNum);
    if(spId != null && !spId.equals("")) {
    this.spidHash.put(account, spId);
    }
    }
    }
  • 相关阅读:
    个人最终总结
    电梯调度的改进
    电梯调度程序
    读程序的修改
    对wordcount单词字母部分的修改
    wordcount
    读程序
    单元测试
    Microsoft Visual Studio 2013安装及试用
    附加题(二)——沈航软件工程期末附加作业
  • 原文地址:https://www.cnblogs.com/dinglulu/p/5238968.html
Copyright © 2011-2022 走看看