Java中Client与Server之间传输文件的源代码如下:
package com.thread;
public class TestThread {
public static void main(String[] args) {
System.out.println(Thread.currentThread().getName());
System.out.println("---------------------------------");
//使用Thread1 类创建线程对象并启动线程
Thread1 t1 = new Thread1();
t1.setName("线程X");
//t1.run();线程方法直接调用,并无用处
//在java中启动线程需要调用start方法
t1.start();
//----------------------------------------------
// Thread2 t2 = new Thread2();
//Thread t = new Thread(t2);
// t.setName("接口线程");
// t.start();
//----------------------------------------------
//new Thread(){
// public void run(){
//线程执行代码
// }
// }.start();
//-------------------------------
//new Thread(new Runnable(){
// public void run(){
//线程执行代码