$(function () { /*$('form input[type=button]').click(function() { $.ajax({ type:'POST', //url:'http://www.google.com/user.php', url:'use...
分类:
Web程序 时间:
2015-12-10 21:49:46
阅读次数:
199
publicclassLogger{
privatestaticfinalStringTAG="TAG";
publicstaticbooleanisLog=true;
publicstaticvoidv(Stringmessage){
if(isLog)
Log.v(TAG,message);
}
publicstaticvoidd(Stringmessage){
if(isLog)
Log.d(TAG,message);
}
publicstaticvoidi(Stringmessage){
if(..
分类:
移动开发 时间:
2015-11-27 15:14:03
阅读次数:
251
前段时间,公司要编写一个接口用来调用三方开发商提供的ftp服务进行文件的下载。对此做了一些代码备份。下面把完整的测试代码贴上来大家一些分享一下。//引入包import java.io.BufferedReader;import java.io.File;import java.io.FileInpu...
分类:
编程语言 时间:
2015-10-29 12:37:17
阅读次数:
286
C# 代码备份数据库 ,不需要 其他 DLLprotected void Button1_Click(object sender, EventArgs e) { /// ///备份方法 /// SqlConnection conn = new SqlConnection("Server=....
分类:
数据库 时间:
2015-09-14 18:08:42
阅读次数:
163
1.添加引用using Microsoft.SqlServer.Management.Smo; using Microsoft.SqlServer.Management.Common;2.Backup bkpDatabase = new Backup(); // Set the backup typ...
分类:
数据库 时间:
2015-09-07 16:49:23
阅读次数:
241
上节中我们是手动拼接xml文件,但是上节中那样的做法会有一个问题,比如:
//插入消息的内容
sBuffer.append("");
sBuffer.append(sms.getBody() + "");
sBuffer.append("");
我在插入消息内容的时候,在追加内容里面加了个 。 这样就会出现解析错误的
所以这节我们使用xml的序列化器来拼接短信内容。
下面的代码...
分类:
移动开发 时间:
2015-08-03 14:36:22
阅读次数:
171
程序开发中常用的工具:1. 版本控制一般自己的项目使用git,公司开发规定用svn。反正不管怎么样,版本控制少不了。有个说法,没有版本控制的项目,就等于没有。版本控制的好处太多了,用过的人都知道。等于历史版本 + 代码备份了。2.单元测试工具写程序需要验证,如果快速知道新的代码和过去的写的代码不冲突...
分类:
其他好文 时间:
2015-06-16 22:38:55
阅读次数:
138
1、文件上传privatestaticvoidcopy(Filesrc,Filedst)throwsIOException{InputStreamin=null;OutputStreamout=null;in=newBufferedInputStream(newFileInputStream(src),BUFFER_SIZE);out=newBufferedOutputStream(newFileOutputStream(dst),BUFFER_SIZE);byte[]buffer=newbyte[..
分类:
编程语言 时间:
2015-05-27 01:12:41
阅读次数:
208
代码$.extend($.validator.messages,{ required: "This field is required.", remote: "Please fix this field.", email: "Please enter a valid email a...
分类:
其他好文 时间:
2015-05-07 08:43:56
阅读次数:
145