0

下面的代码导致图表中没有数据系列被绘制,实际数据正在加载

rob@workLaptop:~$ cat /path/to/files/data/myFile.txt 
1,1
2,1
3,1

爪哇..

import java.util.Vector;

    public class Dataset {

    private String name;
    private Vector<GraphPoint> points;

    public Dataset(String nameTemp){

        this.name = nameTemp;
        this.points = new Vector<GraphPoint>();
    }
}

使用 AJAX 从 servlet发送Vector<Dataset>到 javascript,数据使用序列化response.getWriter().write(new Gson().toJson(datasets));

javascript ..

$(".body").append('<div id="content"><div class="demo-container"><div id="placeholder" class="demo-placeholder"></div></div></div>');
var datasets = JSON.parse(xmlhttp.responseText);
//alert(xmlhttp.responseText);          
var plotarea = $("#placeholder");
$.plot(plotarea, [datasets[0].points, datasets[1].points]);

alert(xmlhttp.responseText);输出 ..

[
    {"name":"myFile.txt",
    "points":[
        {"timestamp":30,"value":100},
        {"timestamp":31,"value":101},
        {"timestamp":32,"value":110}
    ]},
    {"name":"anotherFile.txt",
    "points":[
        {"timestamp":1382987630,"value":200},
        {"timestamp":1382987631,"value":201},
        {"timestamp":1382987632,"value":205}
    ]}
]
4

1 回答 1

0

得到正确的格式,为图中的每个系列创建Dataset对象

public class Dataset {

    private String name;
    private Vector<Vector<Integer>> points;

将每个文件中的系列数据读入Vector<Dataset>

File[] files = finder("/path/to/files/" + request.getParameter("data") + "/");

    Vector<Dataset> datasets = new Vector<Dataset>();

    for (int i = 0; i < files.length; i++){

        datasets.add(readData(files[i]));
    }

向客户端发送json数据

response.setContentType("application/json");
response.getWriter().write(new Gson().toJson(datasets));

System.out.println(new Gson().toJson(datasets));

系统输出..

[{"name":"myFile.txt","points":[[1,1],[2,1],[3,1]]},{"name":"anotherFile.txt","points":[[0,10],[2,20],[5,50]]}]

private Dataset readData(File file){

    Dataset dataset = new Dataset(file.getName());

    try{
        FileInputStream fstream = new FileInputStream(file);
        DataInputStream in = new DataInputStream(fstream);
        BufferedReader br = new BufferedReader(new InputStreamReader(in));
        String strLine;

        while ((strLine = br.readLine()) != null){

            Vector<Integer> points = new Vector<Integer>();

            points.add(Integer.parseInt(strLine.split(",")[0]));
            points.add(Integer.parseInt(strLine.split(",")[1]));

            dataset.addset(points);
        }

        in.close();

    }catch (Exception e) {
        e.printStackTrace();
    }

    return dataset;
}

private File[] finder(String dirName) {

    File dir = new File(dirName);

    return dir.listFiles(new FilenameFilter() {
        public boolean accept(File dir, String filename) {
            return filename.endsWith(".txt");
        }
    });
}
于 2013-10-30T01:01:01.317 回答