using System; namespace FuncDemo { internal class Program { private static void Main() { ...
分类:
其他好文 时间:
2014-08-24 15:18:52
阅读次数:
219
cygwin makePATH->E:\cygwin\binJAVA_HOME->C:\Program Files\Java\jdk1.8.0_05Eclipse->Window->Preference:General->Workspace->Linked Resource New COCOS2DX...
分类:
移动开发 时间:
2014-08-24 14:11:22
阅读次数:
251
原因:在程序中打入了全角字符具体分析产生原因:在编程中,由于打字的快速,按下ctrl键后紧接着按下了space键,由于按下两个键的间隙比较短,导致系统误检测到ctrl + space信号,将输入法从半角切换到全角。解决方法:只需将定位的错误行号对应的代码删掉重新输入即可。
分类:
系统相关 时间:
2014-08-24 01:35:21
阅读次数:
192
启动mqnamesrv总是报,Load JVM error D:\Program Files (x86)\Java\jdk1.6.0_13/jre/bin/server/jvm.dll,我JDK检查几次没有问题
后在开发群里询问网友,JDK必须使用64位解决掉了。
启动mqnamesrv
start/b bin/mqnamesrv.exe >mqnamesrv.log
...
主页: http://asuite.sourceforge.net下载: http://sourceforge.net/projects/asuite/ASuite is a lightweight program launcher that allows you to define a hiera...
1. 生成Android APK包签名证书1). 在doc中切换到jdk的bin目录cd C:\Program Files\Java\jdk1.6.0_18\bin2). 运行下面的命令keytool –genkey –alias android123.keystore –keyalg ...
分类:
其他好文 时间:
2014-08-23 12:40:30
阅读次数:
282
A sequence of N positive integers (10 < N < 100 000), each of them less than or equal 10000, and a positive integer S (S < 100 000 000) are given. Write a program to find the minimal length of the sub...
分类:
其他好文 时间:
2014-08-23 11:22:40
阅读次数:
198
using System;using System.Collections.Generic;using System.Linq;using System.Text; namespace ListSort{ class Program { static void Main(s...
分类:
其他好文 时间:
2014-08-22 23:43:59
阅读次数:
233
最近在研究Mina的开发,通信的时候需要数据加密,而且mina本身支持SSLFilter过滤器,所以可以采用SSL加密的方式对数据进行加密。在进行加密之前,我们需要使用keytool(这个存在于C:\Program Files\Java\jdk1.7.0_65\bin目录下)产生创建keystore...
分类:
其他好文 时间:
2014-08-22 22:31:49
阅读次数:
250
接着上一篇继续学习多线程。 死锁(DeadLock) 当多线程共享资源时,各占一部分资源,而又在等待对方释放资源,这样的情况我们称为死锁。下面通过一个生动的程序来理解死锁。 class Program { private static object knife = new object(); //临...
分类:
编程语言 时间:
2014-08-22 20:55:59
阅读次数:
250