SysUtil使用最为频繁,代码不多,需要掌握反射跟异步知识。反射:反射是指在程序运行时来加载一些类,主要有两点,一:根据类的名称把类load进来。二:获取类的信息,有哪些方法,是什么类型等加载:Class c=Class.forName("Reflect");获取信息:c.getName()获取名...
分类:
其他好文 时间:
2014-10-11 23:59:16
阅读次数:
319
利用原型prototype创建自定义对象Person:function Person(name,sex){ this.name = name; this.sex = sex;}Person.prototype = { getName:function(){return this.n...
分类:
编程语言 时间:
2014-10-11 22:21:26
阅读次数:
180
action中:设置属性并增加get,set方法,给属性赋值后(如:private String name; public String getName() { return name; } public void setName(String name) { this.name = name;.....
分类:
其他好文 时间:
2014-10-11 16:51:35
阅读次数:
237
/**
* 字母
* @author stone
*
*/
public class Letter {
private String name;
public Letter(String name) {
this.name = name;
}
public String getName() {
return name;
}
}/**
* 一个产生字母对象的 享元工...
分类:
编程语言 时间:
2014-10-10 14:46:14
阅读次数:
182
什么是abstract bean?简单来说,就是在java中的继承时候,所要用到的父类。
案例文件结构:
其中Person类为父类,Student类为子类,其具体类为:
package com.test.mySpring;
public class Person {
public String getName() {
return name;
}
public void ...
分类:
编程语言 时间:
2014-10-10 11:46:24
阅读次数:
289
File file=new File("E:\\aa.jpg");
String fileName=file.getName();
String fileTyle=fileName.substring(fileName.lastIndexOf("."),fileName.length());
System.out.println(fileTyle);
程序运行效果图:...
分类:
编程语言 时间:
2014-10-09 20:49:27
阅读次数:
239
1 class Person { 2 private String name; 3 private int age; 4 public String getName() { 5 return this.name; 6 } 7 8 p...
分类:
其他好文 时间:
2014-10-09 14:03:43
阅读次数:
156
public class BaseSpoon implements Cloneable {//spoon 匙, 调羹
String name;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
@Override
protec...
分类:
编程语言 时间:
2014-10-08 13:42:15
阅读次数:
175
1,文件乱码的原因:
这还要提起,之前工作中一位领导的开导。本质原因就是你要读取的内容的编码与你读取使用的编码不一致导致读取的乱码。
保证不乱码,需要在读取的时候设置与内容一致的编码格式。
2,获取取文件名乱码解读:
File.getName() 获取文件名的时候,是根据JDK的默认文件编码进行获取的。要查看JDK中文件的默认编码可以通过Sytem.getProperties()....
分类:
编程语言 时间:
2014-09-29 22:01:01
阅读次数:
296
byte 转file String filepath="D:\\"+getName(); File file=new File(filepath); if(file.exists()){ file.delete(); } FileOutputStream fos = new FileOutputSt...
分类:
其他好文 时间:
2014-09-28 21:05:35
阅读次数:
158