码迷,mamicode.com
首页 > 2014年12月29日 > 全部分享
C#获取一个文件的扩展名
C#获取一个文件的扩展名System.IO.Path.GetExtension( "文件名 ");ChangeExtension 更改路径字符串的扩展名。 Combine 合并两个路径字符串。 GetDirectoryName 返回指定路径字符串的目录信息。 GetExtension 返回指...
分类:Windows程序   时间:2014-12-29 16:47:02    阅读次数:188
C#日期时间格式化
日期转化一为了达到不同的显示效果有时,我们需要对时间进行转化,默认格式为:2007-01-0314:33:34,要转化为其他格式,要用到DateTime.ToString的方法(String,IFormatProvider),如下所示:usingSystem;usingSystem.Globaliz...
分类:Windows程序   时间:2014-12-29 16:46:30    阅读次数:329
android lazy load image from the Internet
/*延迟加载的特性*Lazy load of images in ListView*I am using a ListView to display some images and captions associated with those images.*I am getting the ima...
分类:移动开发   时间:2014-12-29 16:46:30    阅读次数:167
2 Best-sold Versions of CK-100 Key Programmer on Aobd2shop
Whether V45.02 or V99.99 is the new generation of the old SBB key programmer, both of which are regarded the replacement of old one.Therefore, here co...
分类:其他好文   时间:2014-12-29 16:48:09    阅读次数:120
visual studio 中GIT的用法
http://msdn.microsoft.com/zh-cn/library/vstudio/hh850445Git 使用最新版:Git-1.8.4-preview20130916http://pan.baidu.com/share/link?shareid=4006639853&uk=14270...
分类:其他好文   时间:2014-12-29 16:47:09    阅读次数:136
Excel Sheet Column Number
For example: A -> 1 B -> 2 C -> 3 ... Z -> 26 AA -> 27 AB -> 28 看成26进制和10进制之间的转换,Excel Sheet Column Title这道题的逆过程 1 public class S...
分类:其他好文   时间:2014-12-29 16:45:37    阅读次数:124
LESSCSS的几点摘要
字符串插值变量可以用像@{name}这样的结构,以类似ruby和php的方式嵌入到字符串中:@base-url:"http://assets.fnord.com";background-image:url("@{base-url}/images/bg.png");调试我们在生成的CSS中带上一些额外...
分类:Web程序   时间:2014-12-29 16:45:09    阅读次数:159
解析Linux操作系统文件目录
解析Linux操作系统文件目录 随着Linux的不断发展,越来越多的人开始使用Linux,对于那些刚刚接触的人来说,恐怕最先感到困惑的就是那些“不明不白”的目录了。如果想熟练使用Linux,让Linux听命于自己,就必须掌握这些目录,下面就以Xteam公司的最新产品——XteamLinux 4.0....
分类:系统相关   时间:2014-12-29 16:47:27    阅读次数:207
CentOS J2EE环境搭建
1.JDK的安装。tar -xvf jdk-7u9-linux-i586.tar.gz -C /opt/javaln -s /opt/java/jdk1.7.0_09 /opt/java/jdk 创建一个链接vi /etc/profile 设置环境变量export JAVA_HOME=/opt/ja...
分类:其他好文   时间:2014-12-29 16:46:27    阅读次数:92
作业 27 定积分的几何应用
1. (1) 联解两个曲线方程得到交点为 $(0,0)$, $(1,e)$, 因此围成的面积\[ A= \int_0 ^1 (x e -xe^x ) dx= \frac{e}{2} x^2 \bigg|_0^1 - x e^x \bigg|_{0}^1 +\int_0^1 e^x dx =...
分类:其他好文   时间:2014-12-29 16:44:54    阅读次数:150
Asp.net WebPages框架运行原理浅析
[来源]达内[编辑]达内[时间]2012-09-14在Asp.net4和4.5中,新增了WebPages Framework,编写页面代码使用了新的Razor语法,代码更加的简洁和符合Web标准在Asp.net4和4.5中,新增了WebPages Framework,编写页面代码使用了新的Razor...
分类:Web程序   时间:2014-12-29 16:47:12    阅读次数:241
解读XMP元数据中ALAssetRepresentation
当用户进行某些更改(裁剪,消除红眼,...),在内置 Photos.app iOS上,这些更改将不会应用到由相应 fullResolutionImage 返回的 ALAssetRepresentation 照片.但是,这些更改应用到 thumbnail 并由 fullScreenImage 返回的 ...
分类:其他好文   时间:2014-12-29 16:46:51    阅读次数:163
-_-#【Canvas】FPS
分类:其他好文   时间:2014-12-29 16:44:50    阅读次数:130
安装Oracle客户端和plsql
Oracle 客户端安装 + pl/sql工具安装配置Oracle 客户端安装 + pl/sql工具安装配置下载oracle客户端,并在本地安装。11g下载地址为:http://www.oracle.com/technetwork/database/enterprise-edition/downlo...
分类:数据库   时间:2014-12-29 16:43:44    阅读次数:218
Config The Image URL Solution
During the project, in order to make a unified management for the image URL, at present we make use of the LESSCSS method, set the image URL asindepen...
分类:Web程序   时间:2014-12-29 16:45:30    阅读次数:195
MySQL中存储过程+事件的使用方法
MySQL中存储过程、事件使用
分类:数据库   时间:2014-12-29 16:44:29    阅读次数:250
WPF学习之Binding(一)
BindingWPF的核心理念是传统的变UI驱动程序为数据驱动UI,支撑这个理念的基础就是Data Binding和与之相关的数据校验和转换。使用Binding时,最重要的是准确设置它的源和路径。Binding基础Binding是数据的桥梁,两端分别是Source(源)和Target(目标)例子:创...
分类:Windows程序   时间:2014-12-29 16:43:29    阅读次数:250
1615条   上一页 1 ... 36 37 38 39 40 41 42 ... 95 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!