1、window--preferences--general--editors--test Editors--background color色调:85 饱和度:123 亮度:205
分类:
系统相关 时间:
2014-12-08 19:26:07
阅读次数:
259
打开Eclipse,找到菜单栏Window-Preferences在打开的窗口左侧,找到General-Appearance-ColorsandFonts在窗口的右侧,就可以对具体的某一个语言设置,这里以Java语言为例,展开Java,选中“JavaEditorTextFont”,点击右侧的“Edit”按钮在打开的字体设置页面,即可对字体大小和样..
分类:
系统相关 时间:
2014-12-07 06:42:48
阅读次数:
397
1.Eclipse设置默认编码为UTF-8,需要改三处地方:1).Window -->Preferences --> General --> Content Types --> Text->JSP 面板上的 Default encoding设置为UTF-82).Window->Preferences...
分类:
系统相关 时间:
2014-12-05 20:58:25
阅读次数:
251
本文地址:http://www.cnblogs.com/archimedes/p/pl0-compiler1.html,转载请注明源地址。PL/0简介以下内容摘自维基:PL/0,is similar to but much simpler than the general-purpose progr...
分类:
编程语言 时间:
2014-12-04 21:34:58
阅读次数:
1573
更改启动界面(http://comments.gmane.org/gmane.linux.redhat.fedora.general/442899)If you want to switch the Display Manager, say from gdm to kdm.systemctl dis...
分类:
系统相关 时间:
2014-12-04 07:43:09
阅读次数:
314
作者:zhanhailiang 日期:2014-12-02
1. INFO
info指令返回服务器相关信息,包括:
server: General information about the Redis server
clients: Client connections section
memory: Memory consumption related inf...
分类:
其他好文 时间:
2014-12-03 00:31:10
阅读次数:
282
Myeclipse默认打开文件的方式是 jsp design,每次双击或者使用Ctrl+Shift+R打开 就会用这个打开 ,太慢了而且多次导致Myeclipse挂掉。可以通过以下的方式转化成你想要的打开方式,方法如下:Myecipse->preferences->General->editors-...
分类:
Web程序 时间:
2014-12-02 20:47:10
阅读次数:
128
1.about parameters checkoutthis is general traditions to check the received parameters .for instance , when we want to get an array of string standing...
分类:
其他好文 时间:
2014-12-02 18:58:53
阅读次数:
219
修改方法:Window?->?Preferences?->?General?->?Editors?->?Text?Editors?->?Hyperlinking 把超链的快捷键改为其他键比如Alt(不能改为shift) 说明:在Eclipse中,经常可以使用Ctrl+鼠标单击,可以直...
分类:
系统相关 时间:
2014-12-02 15:28:20
阅读次数:
244
1. 三种常用的字符串判空串方法:Length法:bool isEmpty = (str.Length == 0);Empty法:bool isEmpty = (str == String.Empty);General法:bool isEmpty = (str == "");2. 深入内部机制:要探...