差分発生行の前後
無視リスト:
更新日時:
2014/12/04 14:46:14 (10 年 前)
更新者:
atsuko
ログメッセージ:

パスリストAPIのJSON形式を変更

ファイル:
1 変更

凡例:

変更なし
追加
削除
  • SPARQLBuilderWWW/src/java/org/biohackathon/SPARQLBuilder/www/PLServlet.java

    r206 r212  
    8383        SClass[] classes = qpg.getClasses(null); 
    8484        Path[] paths = qpg.getPaths(st, en, true); 
    85         String jsonstr = "{\"paths\":["; 
     85        String jsonstr = "["; 
    8686        for(int i = 0; i< paths.length; i++){ 
    8787            if (i > 0 && paths[i] != null){ 
     
    9393            jsonstr += paths[i].toJSONString3(classes); 
    9494        } 
    95         jsonstr += "]}"; 
     95        jsonstr += "]"; 
    9696        //System.out.println("JSON:"); 
    9797        //System.out.println(jsonstr);