ASP.NET获取服务器目录的几个方法

ASP.NET获取服务器目录的几个方法,第1张

编写程序的时候,经常需要用的项目根目录。自己总结如下

1、取得控制台应用程序的根目录方法

方法1、Environment.CurrentDirectory 取得或设置当前工作目录的完整限定路径

方法2、AppDomain.CurrentDomain.BaseDirectory 获取基目录,它由程序集冲突解决程序用来探测程序集

2、取得Web应用程序的根目录方法

方法1、HttpRuntime.AppDomainAppPath.ToString()//获取承载在当前应用程序域中的应用程序的应用程序目录的物理驱动器路径。用于App_Data中获取

方法2、Server.MapPath("") 或者 Server.MapPath("~/")//返回与Web服务器上的指定的虚拟路径相对的物理文件路径

方法3、Request.ApplicationPath//获取服务器上ASP.NET应用程序的虚拟应用程序根目录

3、取得WinForm应用程序的根目录方法

1、Environment.CurrentDirectory.ToString()//获取或设置当前工作目录的完全限定路径

2、Application.StartupPath.ToString()//获取启动了应用程序的可执行文件的路径,不包括可执行文件的名称

3、Directory.GetCurrentDirectory()//获取应用程序的当前工作目录

4、AppDomain.CurrentDomain.BaseDirectory//获取基目录,它由程序集冲突解决程序用来探测程序集

5、AppDomain.CurrentDomain.SetupInformation.ApplicationBase//获取或设置包含该应用程序的目录的名称

其中:以下两个方法可以获取执行文件名称

1、Process.GetCurrentProcess().MainModule.FileName//可获得当前执行的exe的文件名。

2、Application.ExecutablePath//获取启动了应用程序的可执行文件的路径,包括可执行文件的名称

既然使用了java,实现这种功能就与OS无关了,否则叫什么跨平台。其实用浏览器下载服务器端文件比较容易:

首先,要让用户能找到并选择文件(jsp里实现,部分代码)

String realPath=request.getSession().getServletContext().getRealPath("")+"/documents"//项目根目录下文件路径

File fileDir=new File(realPath)

String[] fileList=fileDir.list()//返回目录下文件名称数组

for(int i=0i<fileList.lengthi++){

//这里遍历出来要显示的文件名,加到td里,后面再加上个“下载”按钮

//使用隐藏input记录文件名和路径fileName,filePath

其次,提交下载请求并下载

使用form提交用户选择的文件名,Action中部分代码:

String fileName=req.getParameter("fileName")//HttpServletRequest req

String filePath=req.getParameter("filePath")

try {

FileDownload.Download(filePath+"/"+fileName, "attachment", res)

} catch (Exception e) {

e.printStackTrace()

}

下面是 FileDownload类:

package com.aerolink.aocs.util.fileUtil

import java.io.DataInputStream

import java.io.File

import java.io.FileInputStream

import java.io.FileNotFoundException

import java.io.IOException

import javax.servlet.ServletOutputStream

import javax.servlet.http.HttpServletResponse

/**

* <p>

* Title: FileDownload类

* </p>

* <p>

* Description: 实现文件下载功能

* </p>

* <p>

* 将文件名,HttpServletRequest,HttpServletRespons传给静态方法Download即可

* </p>

* <p>

* Copyright: Copyright (c) 2005

* </p>

* <p>

* Company: 北京天航信达信息技术有限公司

* </p>

*

* @author 陶源

* @version 2.0

*/

public class FileDownload {

/**

* @param fileName

* @param res

* @throws FileNotFoundException

* @throws IOException

*/

public static void Download(String fileName,

HttpServletResponse res)

throws FileNotFoundException, IOException {

String fileContentType = "application/octet-stream"

String fileDownloadType = "attachment"

long totalsize = 0

// 取得要传输的文件,实际应用是可以将文件路径以参数的形式传入

File f = new File(fileName)

// 取文件长度

long filelength = f.length()

byte[] b = new byte[1024]

// 设置文件输出流

FileInputStream fin = new FileInputStream(f)

DataInputStream in = new DataInputStream(fin)

int pos = fileName.lastIndexOf(java.io.File.separator)

String fn = new String(fileName.substring(pos + 1).getBytes("gb2312"),

"ISO8859-1")

// 设置相应头信息,让下载的文件显示保存信息

res.setContentType(fileContentType)

res.setHeader("Content-Disposition", fileDownloadType + "filename=\""

+ fn + "\"")

// 确定长度

String filesize = Long.toString(filelength)

// 设置输出文件的长度

res.setHeader("Content-Length", filesize)

// 取得输出流

ServletOutputStream servletOut = res.getOutputStream()

// 发送文件数据,每次1024字节,最后一次单独计算

while (totalsize <filelength) {

totalsize += 1024

if (totalsize >filelength) {

// 最后一次传送的字节数

byte[] leftpart = new byte[1024 - (int) (totalsize - filelength)]

// 读入字节数组

in.readFully(leftpart)

// 写入输出流

servletOut.write(leftpart)

} else {

// 读入1024个字节到字节数组 b

in.readFully(b)

// 写和输出流

servletOut.write(b)

}

}

servletOut.close()

}

/**

* @param fileName

* @param fileDownloadType

* @param res

* @throws FileNotFoundException

* @throws IOException

*/

public static void Download(String fileName, String fileDownloadType,

HttpServletResponse res)

throws FileNotFoundException, IOException {

String fileContentType = null

if (fileName.endsWith(".doc")) {

fileContentType = "application/msword"

} else if (fileName.endsWith(".pdf")) {

fileContentType = "application/pdf"

} else if (fileName.endsWith(".xls")) {

fileContentType = "application/vnd-ms-excel"

} else if (fileName.endsWith(".txt")) {

fileContentType = "text/plain"

} else {

fileContentType = "application/octet-stream"

}

long totalsize = 0

// 取得要传输的文件,实际应用是可以将文件路径以参数的形式传入

File f = new File(fileName)

// 取文件长度

long filelength = f.length()

byte[] b = new byte[1024]

// 设置文件输出流

FileInputStream fin = new FileInputStream(f)

DataInputStream in = new DataInputStream(fin)

int pos = fileName.lastIndexOf(java.io.File.separator)

String fn = new String(fileName.substring(pos + 1).getBytes("gb2312"),

"ISO8859-1")

// 设置相应头信息,让下载的文件显示保存信息

res.setContentType(fileContentType)

res.setHeader("Content-Disposition", fileDownloadType + "filename=\""

+ fn + "\"")

// 确定长度

String filesize = Long.toString(filelength)

// 设置输出文件的长度

res.setHeader("Content-Length", filesize)

// 取得输出流

ServletOutputStream servletOut = res.getOutputStream()

// 发送文件数据,每次1024字节,最后一次单独计算

while (totalsize <filelength) {

totalsize += 1024

if (totalsize >filelength) {

// 最后一次传送的字节数

byte[] leftpart = new byte[1024 - (int) (totalsize - filelength)]

// 读入字节数组

in.readFully(leftpart)

// 写入输出流

servletOut.write(leftpart)

} else {

// 读入1024个字节到字节数组 b

in.readFully(b)

// 写和输出流

servletOut.write(b)

}

}

servletOut.close()

}

}

您好,提问者:

首先你要了解一个带有源码的web应用程序的结构,下面请看结构分析:

web应用程序结构分析:

--src:基本存放.java和一些像struts.xml的文件。

--web-root:部署web项目就是部署这个文件。

--web-root下web-inf:存有页面(jsp/html)和.java生成的.class文件。

--------------------------------Tomcat部署结构--------------------------------

1、它不会添加的你的src目录,它会把你web-root这个文件夹给你改成web项目的名字部署到apache-tomcat-6.0.20\webapps\目录下。

2、apache-tomcat-6.0.20\work\Catalina\localhost\目录下是你的web项目驱动程序。

3、apache-tomcat-6.0.20\conf\tomcat-users.xml可以配置你的tomcat密码等信息。

4、apache-tomcat-6.0.20\conf\web.xml下是一些查用格式等等信息。

5、apache-tomcat-6.0.20\conf\context.xml下就是配置ip和端口的一些信息,驱动web项目也是在这个xml走通的!


欢迎分享,转载请注明来源:夏雨云

原文地址:https://www.xiayuyun.com/zonghe/741275.html

(0)
打赏 微信扫一扫微信扫一扫 支付宝扫一扫支付宝扫一扫
上一篇 2023-08-13
下一篇2023-08-13

发表评论

登录后才能评论

评论列表(0条)

    保存