if (openFileDialogShowDialog()Value)
{
//文件信息
FileInfo fileInfo = openFileDialogFile;
在信任情况下可用( fileInfoFullName) 获取到路径
fileInfoName 获取文件名
}
首先在窗体中放置
Microsoft
Common
Dialog
Control,名称指定为
cdlg1。
然后放一个按钮,代码如下:
Private
Sub
Command1_Click()
Dim
fname
As
String
Dim
content
As
String
cdlg1ShowOpen
fname
=
cdlg1FileName
MsgBox
fname
Open
fname
For
Input
As
#1
Input
#1,
content
MsgBox
content
Close
#1
End
Sub
1插入一个模块或在已有的模块最上面一行定义一个全局变量
比如: Public iFileName As String
2在这个工作薄的其他模块中都可以引用这个变量
比如:(先执行一次test1,再执行test2)
Sub test1()
'打开一个选择文件的对话框
iFileName = ApplicationGetOpenFilename
End Sub
Sub test2()
If iFileName = "False" Then
MsgBox "没有选择文件!"
Else
wz = InStrRev(iFileName, "\")
Path = Left(iFileName, wz)
fname = Right(iFileName, Len(iFileName) - wz)
MsgBox "选择的文件名为:" & fname & vbCrLf & "路径为:" & Path
End If
End Sub
分类: 电脑/网络 >> 程序设计 >> 其他编程语言
问题描述:
String titlePath = null;
String recPath = null;
String templatePath = null;
String replacePath = null;
SecHandAnalyse yse = new SecHandAnalyse();
titlePath = "/conf/sechand/naalee/titleconf";
recPath = "F:\\naaleerec";
templatePath= "/conf/sechand/naalee/templateconf";
replacePath= "/conf/sechand/naalee/replaceconf";
有办法能使它只需要通过一个路径就找到其它3个的。CONF文件吗?`````
解析:
可以的 采用 File 类 和 FileFilter 接口:
public static void main(String args[]){
File directory = new File("/conf/sechand/naalee/");
Systemoutprintln(directoryisDirectory());
File[] fileList = directorylistFiles(new javaioFileFilter() {
public boolean accept(File file) {
if(filegetName()endsWith("conf")) return true;
else return false;
}});
for (File file : fileList) {
Systemoutprintln(filegetPath());
}
}
jsp中实现文件上传选择是通过input file=“file”实现的。
举例如下:
有一个如下内容的uploadjsp文件,用来选择要上传的文件:
<html>
<head>
<title>Jsp文件上传例子</title>
</head>
<body>
<form name="upform" action="UploadServlet" method="POST" enctype="multipart/form-data">
<input type ="file" name="file1" id="file1"/><br/>
<input type="submit" value="上传" /><br/>
<input type="reset" />
</form>
</body>
</html>
上面文件值得注意的地方:
1 action="UploadServlet" 必须和后面的webxml配置文件中对servlet映射必须保持一致
2 method="POST" 这里必须为"POST"方式提交不能是"GET"
3 enctype="multipart/form-data" 这里是要提交的内容格式,表示你要提交的是数据流,而不是普通的表单文本
4 file1表示你要上传一个文件
以上就是关于Silverlight如何获取选择文件的路径+文件名称全部的内容,包括:Silverlight如何获取选择文件的路径+文件名称、vb 选择文件 获取文件路径、VBA中怎么通过打开文件的对话框获取选择文件的路径并在其他模块中引用该路径等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)