搜索资源列表
JavaLearning
- Java教程JAVA设计环境地安装及设定;Java教程Java学习从初步掌握到精通;Java教程java 运用命令行参数。
document
- 实现一个简单的文本编辑器,该编辑器从键盘依次读入成行的文本,并将文本内容及时写入文件中,文件名由命令行参数指定。如果输入“stop”,运行结束。,
程序实现任意文件的拷贝功能
- 编写一程序实现任意文件的拷贝功能,源文件名和目的文件名由命令行参数提供。 2.创建一个学生对象,并把它输入到一个文件(mytext.txt)中,然后再把该对象读出来,将其还原后打印出来。 ,Write a program to achieve any file copy function, source file name and destination file name from the command line parameter. 2. To create a student obj
java1
- java语言编程实现:利用命令行参数解一元三次方程。 包含相关代码和运行结果 -java programming language: the use of command-line parameter cubic equation solution of one dollar. Contains the relevant code and operating results
javatxt
- 实现一个简单的文本编辑器,该编辑器从键盘依次读入成行的文本,并将文本内容及时写入文件中,文件名由命令行参数指定。如果输入“stop”,运行结束。-To achieve a simple text editor, the editor followed by reading from the keyboard into the trip of the text, and text content is written and timely file, the file name specified
java-URL
- 创建一个简单的HTTP客户程序,它访问由命令行参数(即main方法的参数)指定的一个网页并把得到的HTTP响应结果保存到本地文件系统的一个文件中。要求使用客户端协议处理框架编写。-Create a simple HTTP client, it is access from the command line parameters (the main 方法 the argument) specifies a Web page and which gain the HTTP Xiangying res
Exercise
- (按升序显示不重复的单词)编写程序,从文本文件中读取单词,并将所有不重复的单词按升序显示,文本文件以命令行参数的方式传递。 编程提示: 文件处理:将命令行获取的文件按行读入,然后将每行文件内容按字符串处理为单词形式。按行读入可以使用BufferedReader 类的readLine()方法,每行处理为单词可以使StringTokenizer 类或者String 类的split()方法。 使用泛型技术创建字符串规则集,不重复地存放单词; 由散列集创建树形集,形成单词的自然排列顺序
wangluobianchengshiyan(3)
- 1.编写一程序实现任意文件的拷贝功能,源文件名和目的文件名由命令行参数提供。 2.创建一个学生对象,并把它输入到一个文件(mytext.txt)中,然后再把该对象读出来,将其还原后打印出来。-1. To write a program to achieve any file copy function, source file name and destination file name from the command line parameter. 2. To create a stud
jargs-1.0
- Jargs是一个处理命令行选项的java库,能够帮助开发者方便的处理用户输入的命令行参数-JArgs is a comprehensive command line option parsing suite, for use by Java programmers. Initially, parsing compatible with GNU-style getopt is provided. JArgs is easy to use, thoroughly tested and well
a
- 1) 利用求n!的方法计算 2!+4!+5!的值。分别利用递归和非递归方法实现求n!。 2) 编写根据三条边求三角形面积的方法。利用该方法求以下两个三角形面积。 (1)三条边分别为:3,4,5 (2)三条边分别为:5.3, 6.2, 8 3)从命令行参数获取两个整数,找出两个整数之间的所有素数,每行输出3个数。-1) use the method seek n! 2!+4!+5! Value. Are recursive and non recursive method seek
IO
- 编写一个程序,用于根据用户输入的命令行参数数量来计算长方形、正方形、三角形的面积。如果输入的参数为一个、二个、三个则它们应分别对应正方形、长方形、三角形,如果没有参数,则通过异常处理方法现实错误消息-Write a program based on user input for command line parameters to calculate the number of rectangular, square, triangle area. If the input parameters
ArrayInput
- 个人原创代码:编写Java Application程序, 从命令行参数输入10个整数并保存在数组中,求数组中最大、最小、数据的和、平均值。-Personal original code: write a Java application program, enter 10 integers from the command line parameters and stored in the array, find an array of maximum, minimum, data and av
DaysBetween
- 个人原创代码:编写Java Application程序,从命令行参数一日期,如“2005-5-6”,计算与今日之间的天数间隔。-The original code of the individual: to write a java application program from the command line parameters a date such as "2005-5-6", calculate the number of days between today interval.
9simple-calculator
- java采用面向对象编程方法实现一个简单的计算器,完成两个整数的加、减、乘、除运算。参与运算的两个整数及运算符从命令行参数传入。-Java programming method by using object oriented implement a simple calculator, finish two integer of add, subtract, multiply and divide operations. Participate in the operation two int
hw2
- 编写一个程序,用于将来自用户的两个数字接受为命令行参数。将第一个数字除以第二个数字并显示结果,处理可能的异常提示:使用两个catch语句,一个用于捕获ArrayIndexOutOfBoundsException异常(从命令行传来的参数个数不对),而另一个用于捕获ArithmaticException异常-Write a program for the two numbers from the user to accept command line parameters. The first nu
MyTriangle
- 画三角形的java程序,高度由命令行参数确定,并带有异常控制,算是入门的小程序,-Java program draw a triangle, the height from the command line parameters to determine, with the exception control, be regarded as the entry procedures,
ShiYan12
- 编写应用程序,使用文件输入输出流实现文件的复制,并将文件的内容打印在屏幕上,被拷贝的源文件和复制的目标文件由命令行参数给出。若没给出两个参数,则通过标准错误流打印出"本程序运行需要输入两个参数!!!"-Write applications, the use of file input and output streams for copying, and the contents of the file print on the screen, the source file is copied
The-string
- 这是一个Java字符、字符串、数组操作的一些实例源码,主要有数组的复制、反转字符串中的字符、命令行参数、求字符串的长度及每一个位置上的字符、数组的排序、String类数组的操作等-Some examples of source code of a Java character string, array operations, array replication, reverse the characters in a string, command line parameters, find
Student-Mangement
- 对学生管理系统, 引入通过键盘输入学生信息、使用学号和姓名查找学生、及至少提供两种方法将学生信息(至少两位同学)写入文件,然后从文件中读取并显示信息的功能。 具体要求为: 1)键盘输入类StuKeyInput(至少支持Scanner方法,采用一行输入一个学生完整信息)2)对象序列化方法文件读写:写文件类StuSerialWrite;读文件类StuSerialRead 3)其他方法文件读写:写文件类StuWrite;读文件类StuRead 4)对2)和3)中所需的文件名通过
Student_Management_System_5
- 写文件类StuWrite;读文件类StuRead 3)进行写文件操作时,如果文件已经存在,按追加模式进行写操作 3)支持通过命令行参数提供所需文件名(含路径名) 4)对类StuException进行修订。当出现文件不存在、或查询的学生不存在等非正常情况时,给出提示信息。 -Write file class StuWrite reading file types StuRead 3) write file operation, if the file already exis