码迷,mamicode.com
首页 >  
搜索关键字:小代码 new image    ( 122652个结果
Rhythmk 学习 Hibernate 04 - Hibernate 辅助工具 之 JBoos Tool
1、安装JBoos Tool Help -> Install new Software 然后添加:http://download.jboss.org/jbosstools/updates/developmenthttp://download.jboss.org/jbosstools/updates....
分类:系统相关   时间:2014-05-12 16:57:54    阅读次数:418
C#产生不重复随机数
static int GetRandomSeed( ){byte[] bytes = new byte[4];System.Security.Cryptography.RNGCryptoServiceProvider rng = new System.Security.Cryptography.RN...
分类:其他好文   时间:2014-05-12 16:10:44    阅读次数:269
C# 常用日期函数
我想知道取的时期是几月、几日,然后做一些统计,上网找了一些方法。--DateTime 数字型 System.DateTime currentTime=new System.DateTime(); 1.1 取当前年月日时分秒 currentTime=System.DateTime.Now; 1.2 取...
分类:其他好文   时间:2014-05-12 15:45:59    阅读次数:259
JCheckBox使用示例
// 初始化JCheckBox chk=new JCheckBox("XXX");// 选择chk.setSelected(true);// 判断选择状态chk.isSelected()
分类:其他好文   时间:2014-05-12 15:42:53    阅读次数:253
vim编辑器的使用
模式切换的命令:键 进入模式 说明 命令模式 (从编辑模式返回命令模式)按 i,a, o “插入” 编辑模式 (在当前光标前开始插入)i :在光标前插入 I 光标所在行的行首开始插入a:在光标后开始插入 A:在本行末开始插入o:在光标所在行下另起一行插入 O:在光标上插入新行在命令模式下不要按其它键...
分类:其他好文   时间:2014-05-02 16:17:28    阅读次数:253
c#编程中创建全局#define - 条件编译符号
项目-属性-生成-条件编译符号而不必每次都在类前面#define了。
分类:其他好文   时间:2014-05-02 16:10:59    阅读次数:1258
类属性不能写在try{}catch(){}里面
public class cal{public static void main(String[] args){calculator ca=new calculator();byte[] first=new byte[4];byte[] second=new byte[4];System.out.p...
分类:其他好文   时间:2014-05-02 15:23:23    阅读次数:395
去除win7 64位系统桌面图标小箭头
去除win7电脑系统桌面图标的快捷方式的小箭头: 首先在桌面新建一个文本文档,设为去除箭头.txt,第二步,把如下代码粘贴到文档中。 reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Icons" /v 29 /d "%systemroot%\system32\image...
分类:Windows程序   时间:2014-05-02 10:15:48    阅读次数:570
关于HTTP协议头域详解
HTTP1.1请求头:消息头 Accept:text/html,image/*告诉服务器,客户机支持的数据类型Accept-Charset:ISO-8859-1告诉服务器,客户机采用的编码 Accept-EnCoding:gzip,compress告诉服务器,客户机支持的数据压缩格式Accept.....
分类:其他好文   时间:2014-05-02 08:46:58    阅读次数:248
Leetcode: Plus One
少数次通过 1 public class Solution { 2 public int[] plusOne(int[] digits) { 3 int[] carry=new int[digits.length+1]; 4 int[] results=new i...
分类:其他好文   时间:2014-05-02 08:23:11    阅读次数:271
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!