importjava.io.BufferedReader;importjava.io.FileReader;importjava.io.FileWriter;importjava.io.IOException;publicclassTestFileWriter{publicstaticvoidmain(String[]args){try{FileReaderout=newFileReader("d:/a.txt");BufferedReaderbr=newBufferedReader(out);chara[]..
分类:
编程语言 时间:
2014-08-11 18:11:53
阅读次数:
231
java读取txt文件class DataLoad{public double[][] LoadTxt(String filePath,int n,int m,int k){double[][] data=new double[m][n];try {String encoding="GBK";Fil...
分类:
编程语言 时间:
2014-08-11 17:20:22
阅读次数:
233
public String getVersion()
{
PackageManager pm = getPackageManager();
try
{
PackageInfo packageInfo = pm.getPackageInfo(getPackageName(), 0);
return packageInfo.versionName;
}
catch (NameNotF...
分类:
其他好文 时间:
2014-08-11 15:04:32
阅读次数:
191
public static UpdateInfo getUpdateInfos(InputStream is)
{
try
{
XmlPullParser parser = Xml.newPullParser();
parser.setInput(is, "UTF-8");
int type = parser.getEventType();
UpdateInfo info = ...
分类:
其他好文 时间:
2014-08-11 15:04:12
阅读次数:
181
尽量预测所有可能面临的问题,按照等级划分并建立蝴蝶效应的树状结构图. 日志系统是为运行期提供的,当然一些复杂的调试可能用得上.但日志是要提供有用的信息,而非毫无理由的try catch.try catch往往为了你不能预期且容易出问题的地方存在.面向对象编程的优异在于便捷类重用,核心关键在于面向抽....
分类:
其他好文 时间:
2014-08-11 14:42:52
阅读次数:
193
try { Sitecore.Resources.Media.MediaCreatorOptions options = new Sitecore.Resources.Media.MediaCreatorOptions();...
分类:
其他好文 时间:
2014-08-11 14:30:22
阅读次数:
232
public?void?JSON(Object?object,String?charset){
??getHttpResponse().setCharacterEncoding(charset);
??getHttpResponse().setContentType("text/html;charset="+charset);
??try?{
???JSO...
分类:
Web程序 时间:
2014-08-11 12:16:32
阅读次数:
232
JAVA IP地址转成长整型方法代码如下: /**
* IP转成整型
* @param ip
* @return
*/
public static Long ip2int(String ip)
{
Long num = 0L;
if (ip == null){
return num;
}
try{
ip = ip.replaceAll(...
分类:
编程语言 时间:
2014-08-11 12:09:42
阅读次数:
201
程序启动:#regionLog4net注册privatevoidRegisterLog4net(){try{stringconfigfile=System.IO.Path.Combine(AppDomain.CurrentDomain.BaseDirectory,"log4net.config");...
分类:
Web程序 时间:
2014-08-11 09:56:11
阅读次数:
250
In this post, I’ll detail how to catch specific key presses and why this can be useful. This is another in my series of “requested” tutorials. There r...
分类:
编程语言 时间:
2014-08-11 02:46:11
阅读次数:
467