我是Java新手,我需要一些建议。
我正在编写一个小程序,用于在用户控制台输入中指定的图形面板中绘制形状。 (使用扫描仪类)
例如,用户可以键入move 100 100
将图形“笔”移动到x,y点,
或者可以输入line 100 200
在两个坐标之间划一条线,
或者可以输入'circle 50'来绘制半径为50px的圆
我的下一个目标是包含命令'load example.txt'来加载包含一些命令的文本文件(example.txt),然后将这些命令执行到图形面板上。
我被告知最好的方法是使用
processCommandLine(String commandLine);
我一直在浏览互联网很长一段时间,现在正在寻找一些有用的信息,但到目前为止,我所能找到的是如何从文本文件中读取,很多像这样:
Scanner reader = new Scanner(new FileInputStream("example.txt");
我知道我需要使用Scanner类来读取文件内容,然后(我认为使用processCommandLine方法)在图形面板上执行它们
到目前为止我的代码:(我已将所有必要的类和方法调用保存在单独的文件中)
import java.util.Scanner;
public class Assign1 {
public final static void main(String[] args) {
System.out.println("Let's draw something on the screen!");
GraphicsScreen graphics = new GraphicsScreen();
Scanner input = new Scanner(System.in); // used to read the keyboard
String next; // stores the next line input
String[] one;
do {
System.out.print("Enter a command (\"stop\") to finish : ");
System.out.print("Type 'help' for a list of commands ");
next = input.nextLine();
one = next.split(" ");
String command = one[0];
if (next.contains("help")) {
System.out
.println("Type 'move' followed by an X and Y co-ordinate to move the graphical pointer.");
System.out
.println("Type 'circle' followed by a radius value to output a circle.");
System.out
.println("Type 'line' followed by an X and Y co-ordinate to draw a line.");
System.out.println("Type 'clear' to reset the graphical canvas.");
}
else if (next.contains("move")) {
int x = 0;
int y = 0;
x = Integer.parseInt(one[1]);
y = Integer.parseInt(one[2]);
graphics.moveTo(x, y);
}
else if (command.equalsIgnoreCase("circle")) {
int radius = 0;
radius = Integer.parseInt(one[1]);
graphics.circle(radius);
}
else if (command.equalsIgnoreCase("line")) {
int x = 0;
int y = 0;
x = Integer.parseInt(one[1]);
y = Integer.parseInt(one[2]);
graphics.lineTo(x, y);
}
else if (next.contains("clear")) {
graphics.clear();
}
else {
System.out.println("error message");
}
} while (next.equalsIgnoreCase("stop") == false);
System.out
.println("You have decided to stop entering commands. Program terminated!");
graphics.close();
}
}
我需要包含的文本文件,例如:
move 100 100 circle 50 line 100 200
当我调用'load example.txt'操作时,应用程序将读取该文本文件,并通过在图形画布上绘制指定的形状来执行其中的命令。
我将非常感谢任何帮助或指导,我一直在做Java编程不到一年,并且总是在努力改进,所以任何建设性的批评都是受欢迎的。
答案 0 :(得分:3)
所以,这是一个很好的项目,因为它向您介绍了代码重用和基本MVC(模型 - 视图 - 控制器)编程的概念。基本上,如果您认为图形上下文是您的视图,并且您使用一组命令控制访问此视图,那么您的模型显然就是命令本身。您现在要做的就是可以从备用源提供模型,保持程序中的所有其他内容不变。
因此,您的第一个任务是创建这个可重用的“控制器”代码,该代码知道如何获取模型(命令),并使用它来影响视图(图形上下文)。您已经拥有了所有必要的逻辑,只需将其移动到您想要的功能中:
public static void processCommandLine(String[] commandArgs, GraphicsScreen graphics) {
if (commandArgs == null || commandArgs.length = 0 || commandArgs[0] == null) {
System.out.println("Null command!");
}
String command = commandArgs[0];
if (command.trim().equalsIgnoreCase("move")) {
int x = 0;
int y = 0;
x = Integer.parseInt(commandArgs[1]);
y = Integer.parseInt(commandArgs[2]);
graphics.moveTo(x, y);
}
else if (command.trim().equalsIgnoreCase("circle")) {
int radius = Integer.parseInt(one[1]);
graphics.circle(radius);
}
else if (command.trim().equalsIgnoreCase("line")) {
int x = 0;
int y = 0;
x = Integer.parseInt(commandArgs[1]);
y = Integer.parseInt(comamndArgs[2]);
graphics.lineTo(x, y);
}
else if (command.trim().equalsIgnoreCase("clear")) {
graphics.clear();
}
else {
System.out.println("Invalid Command!");
}
}
有了这个,您可以将命令和图形屏幕传递给单个函数,它将“渲染”该命令。现在,您希望提供访问该功能的不同方式。您的第一种访问方法是通过控制台向用户查询命令,然后执行它。但是您还希望能够从文件中加载多个命令并立即运行它们。因此,定义一个方法来从文件中读取一堆命令:
public static List<String> getCommands(String fileName) {
if(fileName == null) return new ArrayList<String>(0);
File file = new File(fileName);
if(! (file.exists() && file.canRead()) {
System.err.println("Cannot access file! Non-existent or read access restricted");
return new ArrayList<String>(0);
}
List<String> commandLines = new ArrayList<String>(32);
Scanner scanner = new Scanner(file);
while(scanner.hasNextLine()) {
commandLines.add(scanner.nextLine());
}
scanner.close();
return commandLines;
}
现在,您只需要改变如何将命令传递给渲染功能,具体取决于命令源是控制台还是文件:
public final static void main(String[] args) {
System.out.println("Let's draw something on the screen!");
GraphicsScreen graphics = new GraphicsScreen();
Scanner input = new Scanner(System.in); // used to read the keyboard
String next; // stores the next line input
String[] one;
do {
System.out.print("Enter a command (\"stop\") to finish : ");
System.out.print("Type 'help' for a list of commands ");
next = input.nextLine();
one = next.split(" ");
String command = one[0];
if (command.trim().equalsIgnoreCase("help")) {
System.out
.println("Type 'move' followed by an X and Y co-ordinate to move the graphical pointer.");
System.out
.println("Type 'circle' followed by a radius value to output a circle.");
System.out
.println("Type 'line' followed by an X and Y co-ordinate to draw a line.");
System.out.println("Type 'clear' to reset the graphical canvas.");
}
else if (command.trim().equalsIgnoreCase("load")) {
List<String> commandLines = getCommands(one[1]);
for (String commandLine : commandLines) {
String[] commandArgs = commandLine.split(" ");
processCommandLine(commandArgs, graphics);
}
}
else if (command.trim().equalsIgnoreCase("stop")) {
break;
}
else {
processCommandLine(one, graphics);
}
} while (true);
System.out
.println("You have decided to stop entering commands. Program terminated!");
graphics.close();
}
通过这些(次要)更改,您现在可以从多个不同的源获取命令,并将这些命令呈现给您的视图。