搜索资源列表
Socket
- 用Java Socket完成如下功能:建立客户端和服务器端通讯,服务器端地址为本地端口自拟。两端以TCP形式通讯,假设客户端Class叫Client,服务器端Class叫Server。当运行 java Client Hello时,服务器端能接受客户发来的Hello字符并打印”Receive Hello”然后返回给客户端“How r u doing”字符串 客户端收到后打印”Received How are you doing”. 此时服务器端服务始终运行并未停止并等待其他Socket连接(客户端
2
- 定义一个大学生类Graduate,保护数据成员:姓名,学号,校名,并为它定义带参数的构造函数、拷贝构造函数、析构函数和输出数据成员值的print( )公有成员函数,另定义研究生类Postgraduate,它以公有继承方式派生于类Graduate,新增加“研究方向、导师名”两个私有数据成员,并定义带参数的构造函数,拷贝构造函数、析构函数和输出研究生数据的print( )公有成员函数,另外,要求学号自动增加,且Graduate和Postgraduate的学号起始值不同。在主函数中定义派生类对象进行测
RegisterSimulationSystem
- 模拟上网用户注册 1.用户输入 用户名,密码,email,电话 2.正则校验,不成功重新输入 3.提交server 4.写入DB Client 提供用户输入,并且负责验证 Server 负责把String的信息 转存到User,把User传给DB User 存用户信息equals hashCode DB 打印 toString Test(main)写main方法-Simulated Internet users register a. The user to
TrimWordUtil
- 截取规定数量的字符串,并打印到html中 (html中表格显示常用)-Interception of specified amount of string, and in print to html (html in the table shows commonly used)
uu
- 多个java简单源文件!。。。例如mport java.util.Scanner public class LgOp { public static void main(String[] args) { System.out.print("输入一个数:") Scanner sc=new Scanner(System.in) int Score=sc.nextInt() if(Score>50&&Score 2==0) System
lro
- 1.文法使用产生式来定义;2.给出项目集规范族(即所有的状态)。3.给出状态间的关系。4.给出LR(0)分析表。5.给定符号串判定它是否是文法中的句子,分析过程用分析表格的方式打印出来。-1. Grammars to define the use of production 2. Gives the family of the project set specification (ie all of the state). 3. Given the relationship between t
1245744552KrKDQA
- 1、 编写一个Java应用程序,文件名为Folder.java,编译后执行结果如下图所示,实现指定文件夹下目录和文件的文本形式的树状结构显示。要求: 1. 输入: java Folder,显示当前文件夹下的目录和文件的文本形式树状显示; 2. 输入: java Folder C:\test>,显示C:\test文件夹下的目录和文件的文本形式树状显示;(C:\test可以为任意文件夹路径名) 3. 输入: java Folder add aa,在当前文件夹下面添
java
- 1.根据一个已有的file c:\student.csv, 将所有学生数据读到一个ArrayList中.ArrayList中的元素类型是Student类型。 2.将得到的这个ArrayList按照小组号分组,构造一个HashMap。 Map的key是组号,value是一个ArrayList,这个arraylist中包含了所有在这个小组下的Student 3. 遍历这个HashMap,打印出每组下学生的学号。 注意,要求打印学号的除前3位其他的字符。比如学号为HSG1001,打印出来就是1
ejbinterop
- EJB与CORBA的交互例子,及源代码,代码内有一个处理日志信息打印的类、一个格式化的字符串用于显示信息类、在构造函数中获取当前的日期和时间类等。-EJB and CORBA interactive examples, and source code, the code within a process class to print the log information, a format string used to display information class in the cons
SquareRoot
- import java.io.* public class SquareRoot { public static void main ( String [ ] args ) { System.out.print("Enter a positive value: ") double value = 0 try { BufferedReader in = new BufferedReader(new InputStreamReader(System.in)) String inputLine
Demo
- 现在初学JAVA的同学。。。。。。我特地写了一个输入三个数字,然后按升序排列显示的小程序。值得初学者借鉴。- public static void main(String[] args) throws Exception { int[] arr = new int[3] for (int i = 0 i < arr.length i++) { Scanner input = new Scanner(System.in) Sys
StringTest
- 个人原创代码:编写Java Application程序,完成以下功能: (1)声明一个名为s的String对象,并使它的内容是“My name is Carrol”; (2)打印整个字符串; (3)打印字符串的长度; (4)打印字符串的第一个字符; (5)打印最后一个字符;-Personal original code: write Java Application, complete the following functions: (1) declare a Stri
User
- Scanner提供用户输入,输入后作正则验证,如果格式不正确重新输入。 (包括用户名/密码/email/电话)2,把用户输入的String信息创建一个User对象存起来, 其中用户名是用户的识别的准则,然后把user对象传入Server模拟类。 3,Server模拟类把User对象传入DB模拟类,在DB模拟类中,打印出用户有关信息。-Scanner offers the user input, the input was made after the regular verifica
ejbinterop
- EJB与CORBA的交互例子,及源代码,代码内有一个处理日志信息打印的类、一个格式化的字符串用于显示信息类、在构造函数中获取当前的日期和时间类等。-EJB and CORBA interactive examples, and the source code, code inside a processing log information print category, a formatted string used to display information, in the constr
Palindrome
- 判断回文串,如果是回文串,将此回文串打印出来,不是显示不是回文,忽略非字母和数字-To determine palindrome string is a palindrome string, this palindrome string print it out, instead of showing is not a palindrome, ignoring non-letters and numbers
SortedStringList
- Sort string using doubly linked list-Sort String using doubly linked list. and use it to solve the following programming problem. Given two text files containing words separated by white space, print out in lexical order all words in the first file t
linkedlist
- 建立链表,存储String类型的数据,通过输入指令实现不同的操作。例如插入,删除,指定位置操作,输出-create a linkedlist to achieve several basic functions as follows: such as build a linkedlist first, and insert, delete, index, print and so on
student
- 1.编写一个学生类Student,包含的属性有:学号(String类型)、姓名(String类型)、性别(String)、年龄(int);方法有: say()返回类型是void ,功能是向屏幕打印一行字“I am a Student!”。 2.在上题的基础上,编写一个类TestStudent实现学生对象的添加,在main方法中增加Student对象,编写程序完成以下功能: 1) 增加学生, “姓名:张三、学号:0001、性别:男、年龄:22。” 2) 分别输出张三的学号,姓名,性
InterruptTest2
- //4、针对 interrupt 设计的作业。 //要求: //(1)创建一个线程,让这个线程不断的打印一个字符串(每隔0.5秒打印一个字符串) //(2)当线程启动 2秒后,调用线程的 interrupt 方法时,让线程不再打印字符串,并退出线程 //(用 isInterrupted() 方法来判断是否调用了 interrupt 方法,来控制线程的退出)-//4, the design for the interrupt job.// Requirements:// (1)
TEST1
- 阅读下面的程序,在main()方法里添加语句完成如下功能: ①创建一个MyValue类的对象myValue. ②为myValue对象中的value域赋值10. ③使用getVaule()方法获得myValue对象中的数据并将它打印在屏幕上. class MyValue { private int value public void setValue(int x) { Value = x } public int getValue( ){