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
获取当前类的绝对路径;
html5
html5是指万维网的核心语言、 标准通用标记语言下的一个应用 超文本标记语言( HTML)的第五次重大修改(这是一项推荐标准、外语原文: W3C Recommendation、见本处 参考资料原文内容: )2014年10月29日, 万维网联盟宣布,经过接近8年的艰苦努力,该标准规范终于制定完成。
HTML5的设计目的是为了在移动设备上支持多媒体。新的语法特征被引进以支持这一点,如video、audio和canvas 标记。HTML5还引进了新的功能,可以真正改变用户与文档的交互方式,包括新的解析规则增强了灵活性、新属性、淘汰过时的或冗余的属性等。
标准通用标记语言下的一个应用 HTML标准自1999年12月发布的HTML4.01后,后继的HTML5和其它标准被束之高阁,为了推动Web标准化运动的发展,一些公司联合起来,成立了一个叫做 Web Hypertext Application Technology Working Group (Web 超文本应用技术工作组 - WHATWG) 的组织。WHATWG 致力于 Web 表单和应用程序,而 W3C(World Wide Web Consortium, 万维网联盟) 专注于 XHTML2.0。在 2006 年,双方决定进行合作,来创建一个新版本的 HTML。
HTML5草案的前身名为 Web Applications 1.0,于2004年被WHATWG提出,于2007年被W3C接纳,并成立了新的 HTML 工作团队。
找URL关于绝对路径和相对路径:
绝对路径就是你的主页上的文件或目录在硬盘上真正的路径,(URL和物理路径)例如:C:xyz est.txt 代表了test.txt文件的绝对路径。http://www.sun.com/index.htm也代表了一个URL绝对路径。相对路径:相对与某个基准目录的路径。包含Web的相对路径(HTML中的相对目录),例如:在Servlet中,"/"代表Web应用的跟目录。和物理路径的相对表示。例如:"./" 代表当前目录,"../"代表上级目录。这种类似的表示,也是属于相对路径。另外关于URI,URL,URN等内容,请参考RFC相关文档标准。RFC 2396: Uniform Resource Identifiers (URI): Generic Syntax,(http://www.ietf.org/rfc/rfc2396.txt)2.关于JSP/Servlet中的相对路径和绝对路径。2.1服务器端的地址服务器端的相对地址指的是相对于你的web应用的地址,这个地址是在服务器端解析的(不同于html和javascript中的相对地址,他们是由客户端浏览器解析的)
第一种:
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文件的路径
第四种:
System.out.println(System.getProperty("user.dir"))
结果:
C:\Documents and Settings\Administrator\workspace\projectName
获取当前工程路径
第五种:
System.out.println( System.getProperty("java.class.path"))
结果:
C:\Documents and Settings\Administrator\workspace\projectName\bin
获取当前工程路径
<HTML><HEAD>
<TITLE>上传文件</TITLE>
<SCRIPT language=javascript type=text/javascript>
<!--
var RES_BT_DELETE = "删除"
var isIE = (navigator.userAgent.indexOf("MSIE") != -1)
var fileIndex = 0
function addFile()
{
var spanId = "filespan"
var fileId = "uploadfile" + (fileIndex++)
addInputFile(spanId, fileId)
}
function addInputFile(spanId, fileId)
{
var span = document.getElementById(spanId)
if (span != null)
{
var divObj = document.createElement("div"), fileObj, delObj
divObj.id = fileId
if (isIE)
{
fileObj = document.createElement("<input type=file onchange=changeFile(form)>")
delObj = document.createElement("<input type=button onclick=delInputFile('" + spanId + "','" + fileId + "')>")
}
else
{
fileObj = document.createElement("input")
fileObj.type = "file"
fileObj.setAttribute("onchange", "changeFile(form)", 0)
delObj = document.createElement("input")
delObj.type = "button"
delObj.setAttribute("onclick", "delInputFile('" + spanId + "','" + fileId + "')", 0)
}
fileObj.name = fileId
fileObj.size = "40"
fileObj.className = "input"
delObj.value = RES_BT_DELETE
divObj.appendChild(fileObj)
divObj.appendChild(document.createTextNode(" "))
divObj.appendChild(delObj)
span.appendChild(divObj)
}
}
function delInputFile(spanId, fileId)
{
var span = document.getElementById(spanId)
var divObj = document.getElementById(fileId)
if (span != null && divObj != null)
{
span.removeChild(divObj)
}
}
//-->
</SCRIPT>
<META content="MSHTML 6.00.2800.1528" name=GENERATOR>
</HEAD>
<BODY class=pagebackground>
<FORM id=form action=XXX method=post encType=multipart/form-data>
<TABLE class=dialog1 height=20 cellSpacing=1 cellPadding=8 width="90%" align=center>
<TBODY>
<TR>
<TD noWrap>通过文件上传: </TD>
<TD id=filespan noWrap>
<INPUT class=input type=file size=40 name=file>
<INPUT id=btnAdd onclick=addFile() type=button value=添加>
</TD>
</TR>
</TBODY>
</TABLE>
</FORM>
</BODY>
</HTML>
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)