码迷,mamicode.com
首页 >  
搜索关键字:RAW    ( 4642个结果
MVC输出字符串常用四个方式
var s = new MvcHtmlString("1"); var s1 = "1";//@Html.Raw(s1); var s2 = MvcHtmlString.Create("1"); var s3 = "1";//@String....
分类:Web程序   时间:2014-06-11 09:32:23    阅读次数:256
windows7 32位安装easy_intall
前提条件安装完python(我安装的是2.7版本)安装完python后,把目录加入到环境变量setPATH=%PATH%;C:\Python27https://bitbucket.org/pypa/setuptools/raw/bootstrap/ez_setup.py打开这个页面后复制全部内容到本地目录,保存为easy_instll.py文件进行easy_install模块的安装安装..
分类:Windows程序   时间:2014-06-10 23:54:37    阅读次数:436
android知识点汇集(持续更新)
res/raw和asserts;getWritableDatabase()和getReadableDatabase();代码方式设置Activity;ANR(Application Not Responding)程序无响应
分类:移动开发   时间:2014-06-10 10:35:11    阅读次数:201
[Android]音乐播放器总结
1.MediaPlayer要播放的文件主要包括3个来源:a. 用户在应用中事先自带的resource资源例如:mp = MediaPlayer.create(this, R.raw.test);b. 存储在SD卡或其他文件路径下的媒体文件例如:mp.setDataSource("/sdcard/te...
分类:移动开发   时间:2014-06-08 06:46:24    阅读次数:184
python实现的链表
python实现的链表,包括插入、查找、删除操作 #!/usr/bin/python class linknode(): def __init__(self,k,n=None): self.key=k; self.next=n; def createlist(): #创建链表 n=raw_input("enter the num of nodes"); n=int(...
分类:编程语言   时间:2014-06-07 12:23:46    阅读次数:204
Oracle中Long类型的使用与不可使用
ORA-01754 表只能包含一个LONG类型的列alter table 表名 add 字段名 long raw错误原因:数据表中同时建立了LONG RAW类型和LONG类型。--------------------------------------------------------------...
分类:数据库   时间:2014-06-06 21:31:44    阅读次数:460
Android getMeasuredHeight()与getHeight()的区别
public final intgetMeasuredHeight()Added inAPI level 1LikegetMeasuredHeightAndState(), but only returns the raw width component (that is the result is...
分类:移动开发   时间:2014-06-06 09:15:59    阅读次数:494
android 添加手机短信,获取手机短信,删除手机短信和修改手机短信
注意添加权限: 代码如下://更新短信private void UpdateSMS(){/*update支持的协议有很多:SMS_RAW_MESSAGE SMS_STATUS_PENDING SMS_ALL SMS_FAILED SMS_QUEUED SM...
分类:移动开发   时间:2014-06-03 07:26:15    阅读次数:371
Python统计nginx脚本信息
1 #!/usr/bin/env python 2 # -*- coding: utf-8 -*- 3 import urllib2 4 import json 5 import subprocess 6 import threading 7 8 #统计10个最长访问的ip 9 ip_raw =.....
分类:编程语言   时间:2014-05-28 21:47:39    阅读次数:386
Limestone all become the right products
Aggregate production is the basic raw material for the building, only select those high standards and high qualified aggregate to build a hundred year...
分类:其他好文   时间:2014-05-27 16:26:36    阅读次数:257
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!