- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
我想用下面的代码显示我程序的位置:
String myPath = getClass().getProtectionDomain().getCodeSource().getLocation().getPath();
在 Windows 7 上它运行完美,所以我得到以下结果:
C:/Users/Admin/...
但我的问题是 Windows XP。我得到以下网址:
C:/Dokumente%20und%20Einstellungen/Admin/...
如何替换代码中的 %20
?!
这不起作用:myPath.replaceAll("%20","")
最佳答案
myPath.replaceAll("%20"," ");
不编辑 myPath
本身,它返回一个您需要分配给变量的字符串。
myPath = myPath.replaceAll("%20"," ");
关于java - 在 Windows XP 上获取 Apppath,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16120260/
我在 codeigniter 中遇到问题 - 将其上传到服务器后,我需要库文件夹中模型中的文件
我目前正在使用 tomcat 7 开发一个小型软件项目。服务器在根地址(即 localhost:8080/)运行。所有 Servlet 都在 localhost:8080/[ServletPath]
这是一个例子。 class My_Loader extends CI_Loader { parent::__construct(); include(APPPATH.'config/j
我想用下面的代码显示我程序的位置: String myPath = getClass().getProtectionDomain().getCodeSource().getLocation().g
我使用 [[NSWorkspace sharedWorkspace] iconForFile:appPath]获取应用程序 .icns 中的图像(如应用程序 Info.plist 中定义),但对于某些
我的可执行文件在这个地方 --> D:\Examples\C_Pro\newApp.exe同样在“C_Pro”文件夹中包含几个文件(file1.txt、file2.txt、file44.exe、new
我在 www.mysite.com 站点的主目录中有一个应用程序,在子域中有同一站点的另一个开发版本 http://dev.mysite.com . public_html 和 dev_html 目录
当我查看使用 Kohana 3.2 创建的站点时,会出现严重错误“Kohana_Exception [ 0 ]: Directory APPPATH\cache must be writable”。
我是一名优秀的程序员,十分优秀!