`
文章列表
http://javapub.iteye.com/blog/682257
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() ...

主类Main2

/** * 基本计算 * @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 ...

主类Main1

/** * 计算无括号加减 * @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://bat0906.iteye.com/blog/192677
http://www.iteye.com/topic/194834
http://zhangxiang390.iteye.com/blog/257577
http://jason-gs.iteye.com/blog/524882
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 选项勾上。
http://crazier9527.iteye.com/blog/271710
Global site tag (gtag.js) - Google Analytics