我JFreeChart
用来绘制图表。代码是
package com.daya;
import java.awt.Color;
import java.io.BufferedReader;
import java.io.DataInputStream;
import java.io.FileInputStream;
import java.io.InputStreamReader;
import org.jfree.chart.ChartFactory;
import org.jfree.chart.ChartPanel;
import org.jfree.chart.JFreeChart;
import org.jfree.chart.plot.PlotOrientation;
import org.jfree.chart.plot.XYPlot;
import org.jfree.data.xy.XYDataset;
import org.jfree.data.xy.XYSeries;
import org.jfree.data.xy.XYSeriesCollection;
import org.jfree.ui.ApplicationFrame;
import org.jfree.ui.RefineryUtilities;
public class Two extends ApplicationFrame {
public Two(final String title) {
super(title);
final XYDataset dataset = createDataset();
final JFreeChart chart = createChart(dataset);
final ChartPanel chartPanel = new ChartPanel(chart);
chartPanel.setPreferredSize(new java.awt.Dimension(1200, 1100));
setContentPane(chartPanel);
}
private XYDataset createDataset() {
final XYSeries series1 = new XYSeries("SLMM");
final XYSeries series2 = new XYSeries("FSPM");
XYSeries series = new XYSeries("Power Comparision");
final XYSeriesCollection dataset = new XYSeriesCollection();
try {
FileInputStream fstream = new FileInputStream("d:\\devs\\Result.txt");
DataInputStream in = new DataInputStream(fstream);
BufferedReader br = new BufferedReader(new InputStreamReader(in));
String strLine;
StringBuffer buffer = new StringBuffer();
while ((strLine = br.readLine()) != null) {
buffer.append(strLine);
}
String message = buffer.toString();
message = message.replaceAll(" ", "");
String[] splitMessage = message.split("&&&");
for (int i = 0; i < splitMessage.length; i++) {
double x = 0.0, y = 0.0;
String algType = "direct";
String[] insideSplit = splitMessage[i].split("\\|\\|");
if (insideSplit[0].equalsIgnoreCase("isStraightAlg:false")) {
algType = "indirect";
}
for (int j = 1; j < insideSplit.length; j++) {
String[] valueSplit = insideSplit[j].split("\\:");
if (valueSplit[0].equalsIgnoreCase("Transactions")) {
x = Double.parseDouble(valueSplit[1]);
} else {
y = Double.parseDouble(valueSplit[1]);
}
//System.out.println(valueSplit[1]);
}
if (!algType.equalsIgnoreCase("direct")) {
System.out.println("X :" + x + " Y:" + y);
series1.add(x, y);
} else {
System.out.println("X :" + x + " Y:" + y);
series2.add(x, y);
}
}
dataset.addSeries(series1);
dataset.addSeries(series2);
} catch (Exception e) {
e.printStackTrace();
}
return dataset;
}
private JFreeChart createChart(final XYDataset dataset) {
final JFreeChart chart = ChartFactory.createXYLineChart(
"Power Comparison",
"Transaction",
"Energy",
dataset,
PlotOrientation.VERTICAL,
true,
true,
false);
chart.setBackgroundPaint(Color.white);
final XYPlot plot1 = chart.getXYPlot();
plot1.setBackgroundPaint(Color.lightGray);
plot1.setDomainGridlinePaint(Color.white);
plot1.setRangeGridlinePaint(Color.white);
final XYPlot plot2 = chart.getXYPlot();
plot2.setBackgroundPaint(Color.lightGray);
plot2.setDomainGridlinePaint(Color.white);
plot2.setRangeGridlinePaint(Color.white);
return chart;
}
public static void main(final String[] args) {
final Two demo = new Two("Multi Line Chart");
demo.pack();
RefineryUtilities.centerFrameOnScreen(demo);
demo.setVisible(true);
}
}
文本文件是:
isStraightAlg : 假 || 交易:500 || 能量:74267 &&& isStraightAlg:真 || 交易:500 || 能量:55984 &&& isStraightAlg:假 || 交易:1000 || 能量:169735 &&& isStraightAlg:真 || 交易:1000 || 能量:162520 &&& isStraightAlg:假 || 交易:1500 || 能量:333668 &&& isStraightAlg:真 || 交易:1500 || 能量:313766 &&& isStraightAlg:假 || 交易:2000 || 能量:494159 &&& isStraightAlg:真 || 交易:2000 || 能量:481627 &&& isStraightAlg:假 || 交易:2500 || 能量:594839 &&& isStraightAlg:真 || 交易:2500 || 能量:594839 &&& isStraightAlg:假 || 交易:3000 || 能源 : 847096 & && isStraightAlg : 真 || 交易:3000 || 能源:842402 &&&
使用上面的代码绘制图形。图表如下所示。如何显示绘制图形的确切点,即所选xy
点必须呈现圆形?