大橙子网站建设,新征程启航
为企业提供网站建设、域名注册、服务器等服务
public static void main(String[] args){
成都创新互联公司长期为上千余家客户提供的网站建设服务,团队从业经验10年,关注不同地域、不同群体,并针对不同对象提供差异化的产品和服务;打造开放共赢平台,与合作伙伴共同营造健康的互联网生态环境。为黎城企业提供专业的成都网站制作、成都网站设计,黎城网站改版等技术服务。拥有10余年丰富建站经验和众多成功案例,为您定制开发。
System.out.println("第一行");
System.out.println("第二行");
}
文件名换成你自己即可
import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.RandomAccessFile;
import java.util.ArrayList;
public class ShowSourceCode {
public static void main(String[] args) throws FileNotFoundException, IOException{
RandomAccessFile file = new RandomAccessFile("Add.java", "r");
String tmp;
while((tmp = file.readLine()) != null){
System.out.println(tmp);
}
file.seek(0);
int lineNum = 1;
while((tmp = file.readLine()) != null){
System.out.println(lineNum + ": " + tmp);
lineNum++;
}
}
}
import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.RandomAccessFile;
import java.util.ArrayList;
public class ShowSourceCode {
public static void main(String[] args) throws FileNotFoundException, IOException{
RandomAccessFile file = new RandomAccessFile("Add.java", "r");
String tmp;
while((tmp = file.readLine()) != null){
System.out.println(tmp);
}
file.seek(0);
int lineNum = 1;
while((tmp = file.readLine()) != null){
System.out.println(lineNum + ": " + tmp);
lineNum++;
}
}
}
1、在Label上不能使用\n换行,必须使用Html标签
2、可以在java代码里面使用JLabel实现,如下:
JLabel lblLabel = new JLabel("title"); //title是指标签的名称
lblLabel.setText("htmlbody换行br /换行/body/html");
eclipse中怎样显示行号
选择"窗口"-首选项-编辑器-文本编辑器-右边有"显示行号"-打勾就行了。
Window-Preferences-Editor-Text Editor-Display line numbers
或者 ctrl+F10 勾选show line Number 就是了!
别忘了采纳啊~~~~~
1. 在左边边框旁,点击鼠标右键, 有一个show Line Numbers. 点击就可以了。
2. ctrl+F可以查找
3. 点击工程,有一个Refactor有一个rename可以重命名