(一)函数: (1) Class.getResource(String path) (2) Class.getClassLoader.getResource(String path)其中(2)中 path不能以'/'开头(1)中path 开头有无'/' 均可,含义不同(二)测试目录结构:|--project |--src |--myte...
分类:
编程语言 时间:
2015-03-02 14:49:40
阅读次数:
167
String path = ServletDemo1.class.getClassLoader().getResource("db.properties").getPath(); //在servlet下,用ServletContext的getRealPath方法的得到资源库路...
分类:
其他好文 时间:
2015-02-10 14:57:00
阅读次数:
263
首先简略说明绘制图片:
由于canvas.drawBitmap(bitmap, src, dst, paint);有四个参数所以大体有四五步。
1、通过getResource()方法得到drawable文件夹里BitmapDrawable类型的对象
2、将BitmapDrawable类型转化为Bitmap类型的对象
3、创建src, dst,两个长方形,src是指在原图形上截得的图片,ds...
分类:
移动开发 时间:
2015-02-05 09:38:32
阅读次数:
128
本文转载自:http://blog.163.com/michaelgaoit%40126/blog/static/11389538620103711613620/web 上运行1:this.getClass().getClassLoader().getResource("/").getPath();...
分类:
编程语言 时间:
2015-02-02 17:44:47
阅读次数:
146
1. 备份数据:将数据备份两份,最好备份到不同的服务器上,防止意外情况。2. ls vnc* //可以通过这种方式查询含有vnc字符串的应用,前面可以不用加*3. tomcat 下可以通过:Test.class.getResource(“/”) 来获取到classes所在的目录。4. 通过yum g...
分类:
其他好文 时间:
2015-01-31 14:32:34
阅读次数:
199
第一种:File f = new File(this.getClass().getResource("/").getPath());System.out.println(f);结果:C:\Documents%20and%20Settings\Administrator\workspace\proje...
分类:
编程语言 时间:
2015-01-30 10:40:09
阅读次数:
628
看的框架层相关的概念容易忘记,写个备忘录把理解的重点和遇到的疑惑记下。Context:用Android最早接触到的一个类,使用非常非常广泛,在各个地方都要用到,像Toast、Dialog、new TextView()、getResource()之类的,经常就有个参数是Context。刚开始的时候对这...
分类:
移动开发 时间:
2015-01-29 12:35:59
阅读次数:
278
private void display() { String path=this.getClass().getResource("").getPath(); System.out.println(path); path=this.getClass(...
分类:
其他好文 时间:
2015-01-26 22:23:34
阅读次数:
208
java 获取web根目录的方法我目前用到的有两种:
1,获取类方法所在的目录截取根目录
//在类FreemarkerUtil中获取其class目录
String path = FreemarkerUtil.class.getClassLoader().getResource("").getPath();//执行后path为/D:/Workspace/tourservice/WebConte...
分类:
编程语言 时间:
2014-12-29 12:06:38
阅读次数:
133
如图,eclipse中我的包结构为:,我在 spt.app.MainFrame 中可以通过一下代码段使用资源:public static Object obj = ImageIconProxy.class.getClassLoader().getResource("img/absent.png");...
分类:
编程语言 时间:
2014-12-24 01:15:22
阅读次数:
227