本月博客排行
-
第1名
Xeden -
第2名
fantaxy025025 -
第3名
bosschen - paulwong
- johnsmith9th
年度博客排行
-
第1名
青否云后端云 -
第2名
宏天软件 -
第3名
gashero - gengyun12
- wy_19921005
- vipbooks
- e_e
- benladeng5225
- wallimn
- ranbuijj
- javashop
- jickcai
- fantaxy025025
- zw7534313
- qepwqnp
- robotmen
- 解宜然
- ssydxa219
- sam123456gz
- zysnba
- sichunli_030
- tanling8334
- arpenker
- gaojingsong
- xpenxpen
- kaizi1992
- wiseboyloves
- jh108020
- xyuma
- ganxueyun
- wangchen.ily
- xiangjie88
- Jameslyy
- luxurioust
- mengjichen
- lemonhandsome
- jbosscn
- nychen2000
- zxq_2017
- lzyfn123
- wjianwei666
- forestqqqq
- ajinn
- siemens800
- hanbaohong
- 狂盗一枝梅
- java-007
- zhanjia
- 喧嚣求静
- Xeden
最新文章列表
Chapter 10. Deploying Applications and Applets
1. A JAR (Java Archive) file can contain both class files and other file types such as image and sound files for packing your applications and delivering them to your users. It is compressed, using ...
Java Preferences
Java中的Preferences的基本使用方法:
import java.util.prefs.Preferences;
public class PreferencesDemo {
public static void main(String[] args) throws Exception {
Preferences prefs = Preferences.userNodeF ...
在myeclipse中如何自动生成注释,修改注释内容
想在myeclipse中添加注释时自动把一些内容,比如说作者姓名,email,时间,日期等快速的添加到注释中,可采用以下方法:
myeclipse -> Window -> Preferences -> Java -> Code Style -> Code Templates -> Comments -> Types
点击Edit ,可在Pattern ...
Eclipse 修改快捷键
1. 在Eclipse面板上选择[Window]-[Preferences]
2. 打开Preferences面板,导航至[General]-[Keys]
3. 在搜索框中输入需要修改的Command或Binding
4. 选择[Unbind Command](删除)或[Restore Command](重置)或在Binding中输入新的键盘键(修改)
示例:
a. 解决按键盘辅助键[Alt ...
Eclipse代码自动提示(内容辅助content assist)
Eclipse中默认是输入"."后出现自动提示,用于类成员的自动提示,可是有时候我们希望它能在我们输入类的首字母后就出现自动提示,可以节省大量的输入时间(虽然按alt + /会出现提示,但还是要多按一次按键,太麻烦了)。
从Window -> preferences -> Java -> Editor -> Content assist -> ...
如何恢复eclipse弹出workspace的提示框
启动Eclipse/MyEclipse后, 打开"Window -> Preferences -> General -> Startup and Shutdown->Workspaces", 然后勾选 "Prompt for workspace on startup";
java读写注册表的两种方式,Preferences与jRegistry
由于java程序是“write once, run everywhere”,用java读写注册表,那程序的跨平台性就差了。java对注册表的操作,在jdk1.4以前的版本中,那是不可能的,只能用JNI来实现;然而jdk1.4之后提供的prefs包可以操作windows注册表,不过定死了root只在SOFTWARE/JavaSoft/prefs下,估计也是出于这种两难吧,又要保证所谓平台无关,还要照顾 ...
SharedPreferences
Preferences首选项
用来保存一些简单的数据,一般为程序启动时的预设参数
通过SharedPreferences来存取
SharedPreferences接口主要负责读取程序的Preferences数据;
通过SharedPreferences的内部接口来提供写入数据的能力,即调用edit()方法。
Preferences累死于Map Collection数据,包含key-value。
Sh ...
MyEclipse 字体大小 字体颜色
1 字体大小设置 【Window】-->【Preferences】-->【General】-->【Appearance】-->【Colors and Fonts】-->【Basic】-->【Text Font】-->【Chang】 可参见附件(字体大小.bmp)! 2 字体颜色设置 【java】→【enditor】→【syntax Coloring】,右边展 ...
Chapter 18. I/O -- Thinking in Java
1) The File class has a deceiving name; you might think it refers to a file, but it doesn’t. In fact, "FilePath" would have been a better name for the class. It can represent either the nam ...