码迷,mamicode.com
首页 >  
搜索关键字:add new    ( 108666个结果
批处理获取拖入文件信息
@ECHOOFFecho%1:获取拖入文件完整路径。如:"E:\DDC\add.txt"echo%~1:获取拖入文件完整路径,并去掉首尾引号。如:E:\DDC\add.txtecho%~nx1:获取拖入文件文件名及后缀。如:add.txtecho%~n1:获取拖入文件文件名。如:addecho%~x...
分类:其他好文   时间:2014-04-30 04:19:39    阅读次数:500
可以将一些配置信息已json格式存在数据库中读取的时候序列化。
public partial class json序列化 : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { StringBuilder builder = new StringBuilder(....
分类:数据库   时间:2014-04-30 03:27:17    阅读次数:585
LeetCode1:Two Sum
题目: Given an array of integers, find two numbers such that they add up to a specific target number. The function twoSum should return indices of the t...
分类:其他好文   时间:2014-04-30 03:20:07    阅读次数:502
Js获取当前日期时间及其它操作
Js获取当前日期时间及其它操作var myDate = new Date();myDate.getYear(); //获取当前年份(2位)myDate.getFullYear(); //获取完整的年份(4位,1970-????)myDate.getMonth(); //获取当前月份(0-11,0代表...
分类:Web程序   时间:2014-04-30 03:08:42    阅读次数:550
C# 实现访问FTP服务器下载文件,获取文件夹信息小记
最近因为要开发广告制作工具,自动生成广告流,需要获取第三方服务器上的文件资源,经过摸索,从这次经历中记录下。 FtpWebRequest reqFtp;WebResponse response = null;//获取文件夹信息reqFtp = (FtpWebRequest)WebRequest.Cr...
分类:其他好文   时间:2014-04-30 02:52:23    阅读次数:519
发送广播
public void sendPlayStateBrocast() {if (mContext != null){Intent intent = new Intent(BROCAST_NAME);intent.putExtra(MusicPlayState.PLAY_STATE_NAME, mPl...
分类:其他好文   时间:2014-04-30 02:49:15    阅读次数:414
PowerDesigner 15 进行 数据库反转到 数据库模型
菜单"File" - "Reverse Engineer" - "DataBase"弹出来 New Physical Data Model 窗口 ,为模型建好名字 - 点击确定到下一步 就是为建立 类似 jdbc连接数据库的配置文件的一个功能。选择using a data source : 点击右侧...
分类:数据库   时间:2014-04-30 02:46:10    阅读次数:585
自定义广播
mSDStateBrocast = new SDStateBrocast(); IntentFilter intentFilter2 = new IntentFilter(); intentFilter2.addAction(Intent.ACTION_MEDIA_MOU...
分类:其他好文   时间:2014-04-30 02:29:49    阅读次数:514
4.3.3版本之引擎bug
bug描述: IOS设备上,当使用WWW www = WWW.LoadFromCacheOrDownload(url, verNum); 下载资源时,第一次下载某个资源,www.assetBundle必定为空。解决办法: 引擎版本降到4.3.2或者升到4.3.4或更高。 这个bug绝对是神...
分类:其他好文   时间:2014-04-30 02:23:39    阅读次数:442
Jquery异步提交$.ajax的使用
function test(){ var myEntity=new Object(); myEntity.pro1="xxx"; myEntity.pro2=10; $.ajax({ type: "post",//提交方式,post,get,put,delete 等 ...
分类:Web程序   时间:2014-04-30 02:17:27    阅读次数:484
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!