- 浏览: 594302 次
- 性别:
- 来自: 深圳
最新评论
-
zhjw009:
您是不是在2012年做过spark IM 的二次开发?最近公司 ...
一个相当不错的swing开源皮肤包Look&Feel(Substance) -
panghaoyu:
实现一个智能提示功能需要ajax、数据库、jsp/php、算法 ...
jquery自动补全例子 -
DEMONU:
什么鸟,看不懂
JAVA实现负载均衡 -
higherzjm:
这个跟负载均衡有什么关系啊,求解答
JAVA实现负载均衡 -
HAO_FISH:
import java.*;
JTree,将树的每个节点设置成不同的图标
文章列表
public class Check extends Thread
{
//时间文件路径
private String path;
//license文件路径
private String license;
public void setPath(String path)
{
this.path = path;
}
public void setLicense(String license)
{
this.license = license;
}
/**
* 开始检测
*/
public v ...
/**
* 文件重命名
* @param from 源文件
* @param fileName 修改后的文件名
* @throws IOException
*/
public void fileRename(String from, String fileName) throws IOException
{
//检查文件是否存在
fileExists(from);
//得到文件路径后组合新文件路径
File file = new File(from);
String path = file.getParent() ...
/**
* 基本计算
* @param x
* @param y
* @param operator
* @return
*/
public static double account(double x, double y, String operator)
{
if(operator.equals(Operator.ADD))
{
return x + y;
}
else if(operator.equals(Operator.MINUS))
{
return x - y;
}
else ...
/**
* 计算无括号加减
* @param formula 公式
* @return
*/
public static double accountMinusAndAdd(String formula)
{
Shed shed = new Shed();
char[] c = formula.toCharArray();
String tmp = "";
boolean isAcc = false;
for(int i = 0; i < c.length; i++)
{
if(c[i] = ...
/**
* 栈
* @author RuiLin.Xie - xKF24276
*/
class Shed
{
ArrayList<String> list = new ArrayList<String>();
//长度
public int getSize()
{
return list.size();
}
//存
public void put(String num)
{
list.add(num);
}
//取
public String get()
{
Stri ...
http://zhangxiang390.iteye.com/blog/257577
http://www.blogjava.net/BearRui/archive/2010/06/17/facebook_html_chunk.html
http://www.blogjava.net/darkbluefeeling/archive/2010/06/22/324143.html
http://www.blogjava.net/envoydada/archive/2009/09/30/133285.html
使用eclipse或myEclipse开发工具时,相信有很多人都碰到过这样的问题,着实让人很烦,光标总是跳来跳去,在网上找到这样的方法,确实有用,有碰到这种情况的可以试试,打开window--Preferences--MyEclipse--Files and Editors--HTML--Visual Designer ,把 Manually refresh design view when not synchronized 选项勾上。