程序怎么写数据库相对路径

1.数据库,相对路径这个需要的超链接指向文件在服务器的绝对路径,即下面获取到的文件的编译路径 :
/**
* 获取当前项目的编译路径
* 例如,E:/MyEclipse/Workspace/MyProject/build/classes/
**/
String filePath = Thread.currentThread().getContextClassLoader().getResource("").getPath();
/**
* 在当前项目中获取/upload/test.doc文件所在的编译路径
* 例如,E:/MyEclipse/Workspace/MyProject/build/classes/upload/test.doc
**/
String filePath =Thread.currentThread().getContextClassLoader().getResource("upload/test.doc").getPath();
2.vb我写的程序连接的数据库怎么设置成相对路径啊,具体方法,我一般来说数据库放在程序的同目录下,这样才好实现相对路径:
dim DataPath as string
DataPath = App.Path & iif(right(App.path,1)="\","" ,"\") & "MyData.MDB"
strSQL = "Driver={Microsoft Access Driver (*.mdb)}; Dbq=" & DataPath & "; Uid=Admin; Pwd=; "
【程序怎么写数据库相对路径】

程序怎么写数据库相对路径

文章插图