- 浏览: 150815 次
- 性别:
- 来自: 深圳
文章列表
http://sd.csdn.net/a/20111223/309583.html
本文作者Robert Nyman是Mozilla的技术布道者,从1999年开始从事Web前端开发 。让Web开发人员的生活尽可能轻松和高效,这是Firefox一直坚持的目标之一。通过提供工具和可扩展的Web浏览器,让开发人员能够创造出令人惊奇的东西。
Firefox自带的开发工具
我们致力于开发一系列包含在Firefox内的开发工具。它们在 Developer Tools in Firefox Aurora 10中有更详细的描述,有了它们我们就能做出一些很有趣的事。
我们对大量的用户接口和编码方式进行测试和 ...
//resourcebundle 为包名,Common为properties文件名, "." 可以替换成"/"
Locale locale1 = new Locale("zh", "CN");
Locale locale2 = new Locale("en", "US");
ResourceBundle bundle = ResourceBundle.getBundle("resourcebundle.Common", ...
Application already exists in the configuration repository error when installing new EAR in WAS admin console.
If we can screw up our enterprise application installation properly, we would reach to a state where we cannot go forward and backward. It is a nice state in which if we try to uninstall th ...
import java.util.ArrayList;
import java.util.List;
import com.google.gwt.user.client.rpc.AsyncCallback;
import com.google.gwt.user.client.ui.Grid;
import com.google.gwt.user.client.ui.PopupPanel;
import com.smartgwt.client.widgets.Img;
import com.smartgwt.client.widgets.Label;
/**
...
转载至:
http://www.4ucode.com/Study/Topic/697242
ackage test;
import java.io.FileOutputStream;
import java.io.IOException;
import java.util.Date;
import org.apache.poi.hssf.usermodel.HSSFCell;
import org.apache.poi.hssf.usermodel.HSSFCellStyle;
import org.apache.poi.hssf.usermodel.H ...
GWT Download
- 博客分类:
- GWT
GWT 下载导入的模板
final FormPanel download = new FormPanel();
download.setAction(GWT.getHostPageBaseURL() + "download");
download.setMethod(FormPanel.METHOD_POST);
Button dl = new Button("Download");
dl.addClickHandler(new ClickHandler()
{
public void o ...
Java MD5加密
- 博客分类:
- 综合
参考Iteye sunnylocus 同学的文章:
http://sunnylocus.iteye.com/blog/228630
JBoss SSL Config
- 博客分类:
- Tomcat
http://community.jboss.org/wiki/SSLSetup
http://docs.jboss.org/jbosssecurity/docs/6.0/security_guide/html/Encrypting_Data_Source_Passwords.html
java -cp client\jboss-logging.jar;lib\jbosssx.jar org.jboss.resource.security.SecureIdentityLoginModule PASSWORD
Maven build 可执行jar
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<addMavenDescr ...