downloadsaction.java
来自「这是一个由本人编写的基于java编写的实现文件下载的应用程序」· Java 代码 · 共 37 行
JAVA
37 行
package download;
import java.io.File;
import java.net.URL;
public class Downloadsaction {
int threadNum;
File fileName;
String url;
public int getThreadNum(){
return threadNum;
}
public void setThreadNum(int a)
{
threadNum=a;
}
public File getFileName()
{
return fileName;
}
public void setFileName(File file)
{
fileName=file;
}
public String getURL()
{
return url;
}
public void setURL(String url)
{
this.url=url;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?