⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 test.java

📁 实验目的 1.培养学生综合掌握软件开发过程的能力。 2.培养学生综合运用面向对象设计方法的能力
💻 JAVA
字号:
import java.io.*;

public class test
{
	public static void main (String args[]) throws IOException
	{
		String s=new String();
		File outfile=new File("23.txt");
		myDictionary adic =new myDictionary();
		myText atext = new myText();
		Checker achack =new Checker();
		output aout=new output();
		
		
		File afile=new File("Dictionary.txt");
		adic.OpenDictionary(afile);
		
		File file2=new File("11.txt");
		s=atext.OpenText(file2);
		
		achack.check(adic,s);//最后是这里出错了,只要在取下一个就行了
		
		aout.outprint(achack.checkLine,outfile);
		

		
	
	}
	
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -