打开浏览器,点文件-打开,查找HTML文件。
*** 作步骤:
1、我的电脑中双击html文件后,默认使用谷歌浏览器打开;
2、右键单击html文件,选择“打开方式”-"选择默认程序";
3、勾选“所有html文件都用这个应用打开”,悔袜选择模局你要指碧码激定的浏览器,比如“Firefox”;
4、再次双击html文件,默认用Firefox打开;
读取html文件的内容方法如下:
1、找腔亩到.HTML文件的位置;
2、然后右击打开选昌嫌择耐圆手浏览器,就可以直接打开网页读取其中的内容。
html通过file获取文件路径方法:第一种:
File f = new File(this.getClass().getResource("/").getPath())
System.out.println(f)
结果:
C:\Documents%20and%20Settings\Administrator\workspace\projectName\bin
获取当前类的所在工程路径
如果不加“/”
File f = new File(this.getClass().getResource("").getPath())
System.out.println(f)
结果:
C:\Documents%20and%20Settings\Administrator\workspace\缓袭projectName\bin\com\test
获取当前类的绝对路径;
第二种:
File directory = new File("")//参数为空
String courseFile = directory.getCanonicalPath()
System.out.println(courseFile)
结果:
C:\Documents and Settings\Administrator\workspace\projectName
获取当前类的所在工程路径
第三种:
URL xmlpath = this.getClass().getClassLoader().getResource("selected.txt")
System.out.println(xmlpath)
结果:
file:/C:/Documents%20and%20Settings/Administrator/workspace/projectName/bin/selected.txt
获取当前工程src目录下selected.txt文扰御兄件的路径拆烂
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)