- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我需要为我的一个项目创建一个简单的条形图。该程序需要输入 1 到 9 个大于零的整数。然后,程序需要显示一个非常简单的条形图,其中整数显示在条形上方。我的教授没有向我很好地解释这个程序,这是第一次使用图形。
该计划需要:
类“SimpleBarChart”(将扩展 Frame),具有私有(private)变量 Bar[] bar 和 int [] inputData 等(如私有(private) Graphics g、私有(private) int windowWid、windowHt 等)和以下函数。它还使用了辅助类 Bars,如下所示:
class Bar
{ public int height, width, value, nix, nwy;
public Bar() {}
public Bar(int height, int width, int value, int nix, int nwy)
{ this.height = height; etc }
}
接下来是构造函数 SimpleBarChart(),它调用 readData()、createBars() 和 drawBars()。
函数 private void readData(),用于读取条形图的 inputData。使用下面给出的代码,该代码使用 JOptionPane。
函数 private void createBars() 用于创建条形数组,并为每个条形指定宽度、高度、值 (bars[i].value = inputData[i])、nix 和 nwy。需要显示窗口顶部和底部有 25 个像素的空间,条形之间有 10 个像素,并且必须允许将条形高度缩放为 inputData 项的形式。
最后是一个函数 private void drawBars() 来绘制条形,一次绘制一个条形,并在条形之间有适当的 sleep 时间,并使用两种不同的颜色。需要使用 g.drawString(""+b.value, nix + b.width/2, nwy - 10) 将每个条形标记为黑色,其值位于其顶部上方 10 像素处。
我一整天都在试图解决这个问题,但我迷路了。任何帮助将不胜感激!
这是我到目前为止所拥有的代码:
package simplebarchart;
import java.awt.*;
import java.awt.event.*;
import java.awt.Toolkit.*;
import javax.swing.*;
import java.io.*;
import java.util.*;
public class SimpleBarchart extends JFrame
{
private final int OUTER_MARGIN = 20;
private static final Color BACKGROUND_COLOR = Color.white;
private static final Color BAR_COLOR = Color.red;
private int SPACE_ON_LEFT_RIGHT;
private Image fImageBuffer;
private Insets fInsets;
private Graphics g;
private Bar[] bars;
private static int SLEEP = 500;
private int[] inputData;
class Bar
{
private int height, value;
public int width;
public int nwx;
public int nwy;
public Color color;
public Bar() {}
public Bar(int height, int width, int value, int nwx, int nwy)
{
this.height = height;
this.width = width;
this.value = value;
this.nwx = nwx;
this.nwy = nwy;
}
}
public SimpleBarchart(final int[] inputData)
{
this.inputData = inputData;
addWindowListener(new WindowCloser());
fInsets = getInsets();
setSize(WIDTH + fInsets.left + fInsets.right, HEIGHT + fInsets.top + fInsets.bottom);
setTitle("Bar Chart");
if (((fImageBuffer = createImage(WIDTH, HEIGHT)) == null) ||
((g = fImageBuffer.getGraphics()) == null))
System.exit(1);
readData();
createBars();
getContentPane().add(new SimpleBarchart(inputData), BorderLayout.CENTER);
setVisible(true);
}
/**
*
* @param g
*/
protected void paintComponent(final Graphics g) {
g.drawImage(fImageBuffer, fInsets.left, fInsets.top, null);
}
class WindowCloser extends WindowAdapter
{
@Override
public void windowClosing(WindowEvent e)
{
System.exit(0);
}
}
private void readData()
{
String[] inputItems = JOptionPane.showInputDialog("Enter 1 to 9 integers > 0").trim().split(" +");
int numData = inputItems.length;
inputData = new int[numData];
for (int itemIndex = 0; itemIndex < inputItems.length; itemIndex++)
inputData[itemIndex] = numData;
}
private void createBars()
{
//Im confused on how to create the bars for this program.
//This function requires 25 pixels of space on top and bottom of the display- window, 10 pixels between the bars, and has to allow bar-heights to be **scaled to the form of inputData items.**
Bar[] bars = new Bar[];
int pixelBetweenBars = 25;
int width = 800 + 2*OUTER_MARGIN;
int height = 600 + 2*OUTER_MARGIN;
}
private void drawBars(final Graphics g)
{
int OUTER_MARGIN = 20,
WIDTH = 800 + 2 * OUTER_MARGIN,
HEIGHT = 600 + 2 * OUTER_MARGIN;
g.setColor(BACKGROUND_COLOR);
g.fillRect(0, 0, WIDTH, HEIGHT);
g.setColor(BAR_COLOR);
final int barWidth = 20;
for (int itemIndex = 0; itemIndex < inputData.length; itemIndex++) {
final int x = OUTER_MARGIN + 25 * itemIndex;
final int barHeight = 10 * inputData[itemIndex];
final int y = barHeight;
g.fillRect(x, y, barWidth, barHeight);
}
}
public static void main(String[] args)
{
new SimpleBarchart;
}
最佳答案
我同意Uttesh Kumar那JFreeChart是一个优秀的图表库,投入时间学习它确实是值得的。但由于您做这个项目是为了了解有关图形的更多信息,因此最好自己编写绘图代码。
首先是一些一般性评论:
Bar
类定义了两次,并且两个实现都尚未使用;createImage([...], [...]).getGraphics()
构造看起来相当奇特;readData
方法读取空格分隔的数字列表,分配内存,但不存储数字(您可以在此处使用 Bar
类);createBars
方法当前声明了三个尚未使用的局部变量(并且不执行任何其他操作)。如Performing Custom Painting所示MadProgrammer已经推荐过的教程自定义绘画的常见方法是子类化 JPanel
类并重写 paintComponent
方法。 学习这个简短的教程会让您很快上手,所以我非常同意这个建议!
在 readData
方法中,您可以添加几行来存储数字(稍后切换到使用 Bar
类):
for (int itemIndex = 0; itemIndex < inputItems.length; itemIndex++)
inputData[itemIndex] = [...get a number from the inputItems string here...];
在构造函数中调用readData
之后,您可以添加:
getContentPane().add(new SimpleBarPanel(inputData), BorderLayout.CENTER);
setVisible(true);
这使用了一个新的 SimpleBarPanel
类来处理自定义绘制。 (如果您希望显示 SimpleBarPanel
绘画,则应最后调用 setVisible
。)
SimpleBarPanel
类可能如下所示:
import java.awt.*;
import javax.swing.*;
public class SimpleBarPanel extends JPanel {
private static final Color BACKGROUND_COLOR = Color.white;
private static final Color BAR_COLOR = Color.red;
private int[] inputData;
public SimpleBarPanel(final int[] inputData) {
this.inputData = inputData;
}
@Override
protected void paintComponent(final Graphics g) {
super.paintComponent(g);
drawBars(g);
}
private void drawBars(final Graphics g) {
int /*i,*/ OUTER_MARGIN = 20,
WIDTH = 800 + 2 * OUTER_MARGIN,
HEIGHT = 600 + 2 * OUTER_MARGIN;
/*SPACE_BETWEEN_BARS = 10, SPACE_ON_TOP_BOTTOM = 25;*/
g.setColor(BACKGROUND_COLOR);
g.fillRect(0, 0, WIDTH, HEIGHT);
g.setColor(BAR_COLOR);
final int barWidth = 20;
for (int itemIndex = 0; itemIndex < inputData.length; itemIndex++) {
final int x = OUTER_MARGIN + 25 * itemIndex;
final int barHeight = 10 * inputData[itemIndex];
final int y = [...y is calculated using barHeight; the higher the bar, the lower y should be...];
g.fillRect(x, y, barWidth, barHeight);
}
}
}
祝您的项目顺利。
关于java - 用 Java 创建简单的条形图 - 读取数据并输出条形图,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29873878/
初学者 android 问题。好的,我已经成功写入文件。例如。 //获取文件名 String filename = getResources().getString(R.string.filename
我已经将相同的图像保存到/data/data/mypackage/img/中,现在我想显示这个全屏,我曾尝试使用 ACTION_VIEW 来显示 android 标准程序,但它不是从/data/dat
我正在使用Xcode 9,Swift 4。 我正在尝试使用以下代码从URL在ImageView中显示图像: func getImageFromUrl(sourceUrl: String) -> UII
我的 Ubuntu 安装 genymotion 有问题。主要是我无法调试我的数据库,因为通过 eclipse 中的 DBMS 和 shell 中的 adb 我无法查看/data/文件夹的内容。没有显示
我正在尝试用 PHP 发布一些 JSON 数据。但是出了点问题。 这是我的 html -- {% for x in sets %}
我观察到两种方法的结果不同。为什么是这样?我知道 lm 上发生了什么,但无法弄清楚 tslm 上发生了什么。 > library(forecast) > set.seed(2) > tts lm(t
我不确定为什么会这样!我有一个由 spring data elasticsearch 和 spring data jpa 使用的类,但是当我尝试运行我的应用程序时出现错误。 Error creatin
在 this vega 图表,如果我下载并转换 flare-dependencies.json使用以下 jq 到 csv命令, jq -r '(map(keys) | add | unique) as
我正在提交一个项目,我必须在其中创建一个带有表的 mysql 数据库。一切都在我这边进行,所以我只想检查如何将我所有的压缩文件发送给使用不同计算机的人。基本上,我如何为另一台计算机创建我的数据库文件,
我有一个应用程序可以将文本文件写入内部存储。我想仔细看看我的电脑。 我运行了 Toast.makeText 来显示路径,它说:/数据/数据/我的包 但是当我转到 Android Studio 的 An
我喜欢使用 Genymotion 模拟器以如此出色的速度加载 Android。它有非常好的速度,但仍然有一些不稳定的性能。 如何从 Eclipse 中的文件资源管理器访问 Genymotion 模拟器
我需要更改 Silverlight 中文本框的格式。数据通过 MVVM 绑定(bind)。 例如,有一个 int 属性,我将 1 添加到 setter 中的值并调用 OnPropertyChanged
我想向 Youtube Data API 提出请求,但我不需要访问任何用户信息。我只想浏览公共(public)视频并根据搜索词显示视频。 我可以在未经授权的情况下这样做吗? 最佳答案 YouTube
我已经设置了一个 Twilio 应用程序,我想向人们发送更新,但我不想回复单个文本。我只是想让他们在有问题时打电话。我一切正常,但我想在发送文本时显示传入文本,以确保我不会错过任何问题。我正在使用 p
我有一个带有表单的网站(目前它是纯 HTML,但我们正在切换到 JQuery)。流程是这样的: 接受用户的输入 --- 5 个整数 通过 REST 调用网络服务 在服务器端运行一些计算...并生成一个
假设我们有一个名为 configuration.js 的文件,当我们查看内部时,我们会看到: 'use strict'; var profile = { "project": "%Projec
这部分是对 Previous Question 的扩展我的: 我现在可以从我的 CI Controller 成功返回 JSON 数据,它返回: {"results":[{"id":"1","Sourc
有什么有效的方法可以删除 ios 中 CBL 的所有文档存储?我对此有疑问,或者,如果有人知道如何从本质上使该应用程序像刚刚安装一样,那也会非常有帮助。我们正在努力确保我们的注销实际上将应用程序设置为
我有一个 Rails 应用程序,它与其他 Rails 应用程序通信以进行数据插入。我使用 jQuery $.post 方法进行数据插入。对于插入,我的其他 Rails 应用程序显示 200 OK。但在
我正在为服务于发布请求的 API 调用运行单元测试。我正在传递请求正文,并且必须将响应作为帐户数据返回。但我只收到断言错误 注意:数据是从 Azure 中获取的 spec.js const accou
我是一名优秀的程序员,十分优秀!