本文主要是介绍The 'quality' must be in the range 0.0f to 1.0f,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
1、在编译程序的过程中,报出如下的错误:BarChartDemo.java:51: cannot resolve symbol
symbol : class CategoryDataset
location: class demo.BarChartDemo
private static CategoryDataset getDataSet() {
^
BarChartDemo.java:52: cannot resolve symbol
symbol : class DefaultCategoryDataset
location: class demo.BarChartDemo
DefaultCategoryDataset dataset = new DefaultCategoryDataset();
^
这是由于未找到相应的类,在程序前面加上以下两句即可解决这个问题:
import org.jfree.data.category.CategoryDataset;
import org.jfree.data.category.DefaultCategoryDataset;
2、The 'quality' must be in the range 0.0f to 1.0f
这是因为ChartUtilities.writeChartAsJPEG(res.getOutputStream(),100,chart,graphWidth,graphHigh,null);
限制quality必须小于等于1,所以修改一下
把100改成 1.0f就可以显示了
[color=red][color=red][color=red][color=red][b]随着值的增加,图像也变得更加清晰[/b][/color][/color][/color][/color]
这篇关于The 'quality' must be in the range 0.0f to 1.0f的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!