`
yshlin
  • 浏览: 63757 次
  • 性别: Icon_minigender_1
  • 来自: 济南
社区版块
存档分类
最新评论

许多段代码

    博客分类:
  • java
 
阅读更多

 

1、项目地址与类的包名路径

String pro = System.getProperty("user.dir");
String pkg = CgSpringMvcIbatis.class.getPackage().getName().replaceAll("\\.","\\\\"); 

 

2、根据模板生成文件(用时需修改)

Template tJsp = cfg.getTemplate("js.ftl");// 模板名称
tJsp.setEncoding("UTF-8");
String jspDir = jMap.get("conpath").toString();
File fileDir = new File(jspDir);
org.apache.commons.io.FileUtils.forceMkdir(fileDir);
File output_service = new File(jspDir + "/default.js");
Writer writer_service = new BufferedWriter(new OutputStreamWriter(new FileOutputStream(output_service), "UTF-8"));
tJsp.process(jMap, writer_service);
writer_service.close();

 

3、泛型接口Ibatis

/**
 * Ibatis Dao 接口
 * 通用增删改查\带分页\单条
 * @author mywhile
 * @param <T>
 */
public abstract interface IbatisDao<T> {
	public void delete(String guid, String sqlMapId);
	public void save(T bean, String sqlMapId);
	public void update(T bean, String sqlMapId);
	public List<T> query(String sqlMapId);
	public T queryRowByGuid(String guid, String sqlMapId);
	public List<T> queryPageData(String sqlMapId, Map map, int pageNo, int pageSize);	
	public int queryCountRow(Map map, String SqlMapId);
}

 

4、泛型接口实现Ibatis

import java.util.List;
import java.util.Map;

import org.springframework.orm.ibatis.support.SqlMapClientDaoSupport;

import sdcncsi.ibatis.test.dao.IbatisDao;

@SuppressWarnings("unchecked")
public class IbatisServicesImpl<T>
		extends SqlMapClientDaoSupport implements IbatisDao<T> {
	@Override
	public void delete(String guid, String sqlMapId) {
		getSqlMapClientTemplate().delete(sqlMapId, guid);
	}
	@Override
	public List<T> query(String sqlMapId) {
		return getSqlMapClientTemplate().queryForList(sqlMapId);
	}
	@Override
	public T queryRowByGuid(String guid, String sqlMapId) {
		return (T) getSqlMapClientTemplate().queryForObject(sqlMapId, guid);
	}
	@Override
	public void save(T bean, String sqlMapId) {
		getSqlMapClientTemplate().insert(sqlMapId, bean);
	}
	@Override
	public void update(T bean, String sqlMapId) {
		getSqlMapClientTemplate().update(sqlMapId, bean);
	}
	@Override
	public List<T> queryPageData(String sqlMapId, Map map, int pageNo, int pageSize) {
		map.put("pageNo", pageNo == 1 ? 0 : pageSize);
		map.put("pageSize", pageSize);
		return getSqlMapClientTemplate().queryForList(sqlMapId, map);//, pageNo, pageSize
	}
	@Override
	public int queryCountRow(Map map, String sqlMapId) {
		return (Integer) getSqlMapClientTemplate().queryForObject(sqlMapId, map);
	}
}

 

5、Ibatis中取SQL

String sql = null;
SqlMapClientImpl sqlmap = (SqlMapClientImpl)this.getSqlMapClient();   
MappedStatement stmt = sqlmap.getMappedStatement(sqlMapId);   
Sql stmtSql = stmt.getSql();   
SessionScope session = new SessionScope();
StatementScope scope = new StatementScope(session);
scope.setStatement(stmt);   
sql = stmtSql.getSql(scope, map);

 6、附件=Spring+Ibatis代码生成器;

7、文件读取

/**
	 * 以字节为单位读取文件,常用于读二进制文件,如图片、声音、影像等文件。
	 * @param fileName 文件的名
	 */
	public static void readFileByBytes(String fileName) {
		File file = new File(fileName);
		InputStream in = null;
		try {
			System.out.println("以字节为单位读取文件内容,一次读一个字节:");
			// 一次读一个字节
			in = new FileInputStream(file);
			int tempbyte;
			while ((tempbyte = in.read()) != -1) {
				System.out.write(tempbyte);
			}
			in.close();
		} catch (IOException e) {
			e.printStackTrace();
			return;
		}
		try {
			System.out.println("以字节为单位读取文件内容,一次读多个字节:");
			// 一次读多个字节
			byte[] tempbytes = new byte[100];
			int byteread = 0;
			in = new FileInputStream(fileName);
			FileReadWrite.showAvailableBytes(in);
			// 读入多个字节到字节数组中,byteread为一次读入的字节数
			while ((byteread = in.read(tempbytes)) != -1) {
				System.out.write(tempbytes, 0, byteread);
			}
		} catch (Exception e1) {
			e1.printStackTrace();
		} finally {
			if (in != null) {
				try {
					in.close();
				} catch (IOException e1) {
				}
			}
		}
	}
	/**
	 * 以字符为单位读取文件,常用于读文本,数字等类型的文件
	 * @param fileName 	文件名
	 */
	public static void readFileByChars(String fileName) {
		File file = new File(fileName);
		Reader reader = null;
		try {
			System.out.println("以字符为单位读取文件内容,一次读一个字节:");
			// 一次读一个字符
			reader = new InputStreamReader(new FileInputStream(file));
			int tempchar;
			while ((tempchar = reader.read()) != -1) {
				// 对于windows下,rn这两个字符在一起时,表示一个换行。
				// 但如果这两个字符分开显示时,会换两次行。
				// 因此,屏蔽掉r,或者屏蔽n。否则,将会多出很多空行。
				if (((char) tempchar) != 'r') {
					System.out.print((char) tempchar);
				}
			}
			reader.close();
		} catch (Exception e) {
			e.printStackTrace();
		}
		try {
			System.out.println("以字符为单位读取文件内容,一次读多个字节:");
			// 一次读多个字符
			char[] tempchars = new char[30];
			int charread = 0;
			reader = new InputStreamReader(new FileInputStream(fileName));
			// 读入多个字符到字符数组中,charread为一次读取字符数
			while ((charread = reader.read(tempchars)) != -1) {
				// 同样屏蔽掉r不显示
				if ((charread == tempchars.length)
						&& (tempchars[tempchars.length - 1] != 'r')) {
					System.out.print(tempchars);
				} else {
					for (int i = 0; i < charread; i++) {
						if (tempchars[i] == 'r') {
							continue;
						} else {
							System.out.print(tempchars[i]);
						}
					}
				}
			}
		} catch (Exception e1) {
			e1.printStackTrace();
		} finally {
			if (reader != null) {
				try {
					reader.close();
				} catch (IOException e1) {
				}
			}
		}
	}

	/**
	 * 以行为单位读取文件,常用于读面向行的格式化文件
	 * @param fileName 	文件名
	 */
	public static void readFileByLines(String fileName) {
		File file = new File(fileName);
		BufferedReader reader = null;
		try {
			System.out.println("以行为单位读取文件内容,一次读一整行:");
			reader = new BufferedReader(new FileReader(file));
			String tempString = null;
			int line = 1;
			// 一次读入一行,直到读入null为文件结束
			while ((tempString = reader.readLine()) != null) {
				// 显示行号
				System.out.println("line " + line + ": " + tempString);
				line++;
			}
			reader.close();
		} catch (IOException e) {
			e.printStackTrace();
		} finally {
			if (reader != null) {
				try {
					reader.close();
				} catch (IOException e1) {
				}
			}
		}
	}
	/**
	 * 随机读取文件内容
	 * @param fileName 	文件名
	 */
	public static void readFileByRandomAccess(String fileName) {
		RandomAccessFile randomFile = null;
		try {
			System.out.println("随机读取一段文件内容:");
			// 打开一个随机访问文件流,按只读方式
			randomFile = new RandomAccessFile(fileName, "r");
			// 文件长度,字节数
			long fileLength = randomFile.length();
			// 读文件的起始位置
			int beginIndex = (fileLength > 4) ? 4 : 0;
			// 将读文件的开始位置移到beginIndex位置。
			randomFile.seek(beginIndex);
			byte[] bytes = new byte[10];
			int byteread = 0;
			// 一次读10个字节,如果文件内容不足10个字节,则读剩下的字节。
			// 将一次读取的字节数赋给byteread
			while ((byteread = randomFile.read(bytes)) != -1) {
				System.out.write(bytes, 0, byteread);
			}
		} catch (IOException e) {
			e.printStackTrace();
		} finally {
			if (randomFile != null) {
				try {
					randomFile.close();
				} catch (IOException e1) {
				}
			}
		}
	}
	/**
	 * 显示输入流中还剩的字节数
	 * @param in
	 */
	private static void showAvailableBytes(InputStream in) {
		try {
			System.out.println("当前字节输入流中的字节数为:" + in.available());
		} catch (IOException e) {
			e.printStackTrace();
		}
	}
	/**
	 * 将内容追加到文件尾部
	 * A方法追加文件:使用RandomAccessFile
	 * @param fileName	文件名
	 * @param content 	追加的内容
	 */
	public static void appendMethodA(String fileName, String content) {
		try {
			// 打开一个随机访问文件流,按读写方式
			RandomAccessFile randomFile = new RandomAccessFile(fileName, "rw");
			// 文件长度,字节数
			long fileLength = randomFile.length();
			// 将写文件指针移到文件尾。
			randomFile.seek(fileLength);
			randomFile.writeBytes(content);
			randomFile.close();
		} catch (IOException e) {
			e.printStackTrace();
		}
	}
	/**
	 * 将内容追加到文件尾部
	 * B方法追加文件:使用FileWriter
	 * @param fileName
	 * @param content
	 */
	public static void appendMethodB(String fileName, String content) {
		try {
			// 打开一个写文件器,构造函数中的第二个参数true表示以追加形式写文件
			FileWriter writer = new FileWriter(fileName, true);
			writer.write(content);
			writer.close();
		} catch (IOException e) {
			e.printStackTrace();
		}
	}

 

8、Myeclipse生成序列号
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class MyEclipseGEN {
	private static final String LL = "Decompiling this copyrighted software is a violation of both your license agreement and the Digital Millenium Copyright Act of 1998 (http://www.loc.gov/copyright/legislation/dmca.pdf). Under section 1204 of the DMCA, penalties range up to a $500,000 fine or up to five years imprisonment for a first offense. Think about it; pay for a license, avoid prosecution, and feel better about yourself.";

	public String getSerial(String userId, String licenseNum) {
		java.util.Calendar cal = java.util.Calendar.getInstance();
		cal.add(1, 3);
		cal.add(6, -1);
		java.text.NumberFormat nf = new java.text.DecimalFormat("000");
		licenseNum = nf.format(Integer.valueOf(licenseNum));
		String verTime = new StringBuilder("-").append(new java.text.SimpleDateFormat("yyMMdd").format(cal.getTime())).append("0").toString();
		String type = "YE3MP-";
		String need = new StringBuilder(userId.substring(0, 1)).append(type).append("300").append(licenseNum).append(verTime).toString();
		String dx = new StringBuilder(need).append(LL).append(userId).toString();
		int suf = this.decode(dx);
		String code = new StringBuilder(need).append(String.valueOf(suf)).toString();
		return this.change(code);
	}

	private int decode(String s) {
		int i;
		char[] ac;
		int j;
		int k;
		i = 0;
		ac = s.toCharArray();
		j = 0;
		k = ac.length;
		while (j < k) {
			i = (31 * i) + ac[j];
			j++;
		}
		return Math.abs(i);
	}

	private String change(String s) {
		byte[] abyte0;
		char[] ac;
		int i;
		int k;
		int j;
		abyte0 = s.getBytes();
		ac = new char[s.length()];
		i = 0;
		k = abyte0.length;
		while (i < k) {
			j = abyte0[i];
			if ((j >= 48) && (j <= 57)) {
				j = (((j - 48) + 5) % 10) + 48;
			} else if ((j >= 65) && (j <= 90)) {
				j = (((j - 65) + 13) % 26) + 65;
			} else if ((j >= 97) && (j <= 122)) {
				j = (((j - 97) + 13) % 26) + 97;
			}
			ac[i] = (char) j;
			i++;
		}
		return String.valueOf(ac);
	}

	public MyEclipseGEN() {
		super();
	}

	public static void main(String[] args) {
		try {
			System.out.println("please input register name:");
			BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));
			String userId = null;
			userId = reader.readLine();
			MyEclipseGEN myeclipsegen = new MyEclipseGEN();
			String res = myeclipsegen.getSerial(userId, "20");
			System.out.println("Serial:" + res);
			reader.readLine();
		} catch (IOException ex) {
		}
	}
}
 
9、Myeclipse7.1插件添加
public class Plugin {
	private String path;

	public Plugin(String path) {
		this.path = path;
	}

	public void print() {
		List list = getFileList(path);
		if (list == null) {
			return;
		}
		int length = list.size();
		for (int i = 0; i < length; i++) {
			String result = "";
			String thePath = getFormatPath(getString(list.get(i)));
			File file = new File(thePath);
			if (file.isDirectory()) {
				String fileName = file.getName();
				if (fileName.indexOf("_") < 0) {
					continue;
				}
				String[] filenames = fileName.split("_");
				String filename1 = filenames[0];
				String filename2 = filenames[1];
				result = filename1 + "," + filename2 + ",file:/" + path + "\\"
						+ fileName + "\\,4,false";
				System.out.println(result);
			} else if (file.isFile()) {
				String fileName = file.getName();
				if (fileName.indexOf("_") < 0) {
					continue;
				}
				String[] filenames = fileName.split("_");
				String filename1 = filenames[0];
				String filename2 = filenames[1].substring(0, filenames[1]
						.lastIndexOf("."));
				result = filename1 + "," + filename2 + ",file:/" + path + "\\"
						+ fileName + ",4,false";
				System.out.println(result);
			}
		}
	}

	public List getFileList(String path) {
		path = getFormatPath(path);
		path = path + "/";
		File filePath = new File(path);
		if (!filePath.isDirectory()) {
			return null;
		}
		String[] filelist = filePath.list();
		List filelistFilter = new ArrayList();
		for (int i = 0; i < filelist.length; i++) {
			String tempfilename = getFormatPath(path + filelist[i]);
			filelistFilter.add(tempfilename);
		}
		return filelistFilter;
	}

	public String getString(Object object) {
		if (object == null) {
			return "";
		}
		return String.valueOf(object);
	}

	public String getFormatPath(String path) {
		path = path.replaceAll("\\\\", "/");
		path = path.replaceAll("//", "/");
		return path;
	}

	public static void main(String[] args) {
		new Plugin("D:\\Program Files\\MyEclipse 7.1\\plugins").print();
	}
}
 
 
分享到:
评论

相关推荐

    C# 代码段 官方扩充的代码段

    描述中虽然没有给出具体信息,但我们可以推测这个压缩包包含了一系列官方扩展的C#代码片段,这些片段可能涵盖了许多常见的编程任务,如数据访问、网络通信、UI交互等。开发者可以将这些代码段导入到他们的IDE中,...

    112-演示文稿-段式存储管理和示例.pdf

    程序可以被分解成许多段代码、数据等组成的逻辑单元,如 main program、procedure、function、method、object、local variables、global variables、common block、stack、symbol table、arrays 等。每个段都可以...

    javase阶段15个实战项目代码

    在JavaSE阶段,学习者会接触到许多核心概念和技术,这些在后续的JavaEE(企业版)和Android开发中都至关重要。"javase阶段15个实战项目代码"的压缩包包含了15个小项目的源代码,旨在帮助学习者通过实践来深化对Java...

    超实用的javascript代码段 源码

    "超实用的javascript代码段"是席新亮著作的一个资源集合,提供了许多实际开发中常用且高效的代码片段,对于学习和提升JavaScript编程技能非常有帮助。 一、基础语法与类型 JavaScript的基础语法包括变量声明(var、...

    editplus如何实现整段缩进

    下面将详细介绍如何在EditPlus中实现整段代码的缩进操作。 首先,我们来看向右缩进的操作。当你编写或阅读代码时,可能需要将某段代码整体向右移动,以创建内嵌的代码块,例如在控制结构(如if语句、for循环)内部...

    郁金香代码注入器

    代码注入是指将一段代码插入到另一个正在运行的进程的地址空间中,使得这段代码能够在目标进程中执行。这种方法可以用来绕过某些安全机制,或者在不修改原有程序的情况下影响其行为。常见的代码注入技术包括DLL注入...

    Delphi代码对齐工具

    8. **格式化整个文件或选定代码段**:用户可以选择格式化整个源文件,或者仅格式化当前选中的代码区域。 9. **自定义规则**:允许用户根据项目或团队的需求自定义代码格式化规则。 10. **版本控制系统兼容**:工具...

    7段LED HEX 代码生成器

    【7段LED HEX代码生成器】是一款专为电子工程师和爱好者设计的实用工具,它能够帮助用户快速便捷地生成7段LED显示器所对应的十六进制编码。7段LED显示器通常用于数字和字母显示,每个字符由7个独立的发光二极管组成...

    最强弹窗广告代码,超级弹窗代码,超强弹窗代码,强制弹窗代码系统(好铭堂)

    “好铭堂超级弹窗广告系统”是一个可以用一行链接或一小段音视频播放代码调用,就能随意在各种博客首页、博文中、论坛贴子中、电子邮件中弹出广告、视频、网页,而不被浏览器和一些软件拦截 。不用你安装使用什么...

    查找Xcode无用代码

    如果一段代码从未被执行,那么与之相关的内存分配也就不会发生,这在"Leaks"工具中可能会显示为无泄漏。然而,这种方法并不完全准确,因为它依赖于代码执行,无法检测静态初始化的代码。 此外,Xcode的Analyzer...

    可以动态执行程序代码的程序

    标题中的“可以动态执行程序代码的程序”是指一种软件或框架,它允许用户在运行时输入或提供代码,然后即时编译和执行这段代码。这种功能通常被用于教学环境、脚本编写、自动化任务或者在应用程序中提供自定义扩展的...

    超实用的JavaScript代码段.pdf

    这篇“超实用的JavaScript代码段”文档很可能包含了许多常用的、实用的JavaScript函数和技巧,可以帮助开发者提高效率,解决实际问题。 首先,JavaScript的基础知识包括变量声明(var、let、const)、数据类型...

    delphi一段餐饮代码示例

    这段代码示例可能就是一个简单的查询功能,帮助用户查找满足特定条件的数据,例如查询某时段内的订单、菜品销售情况或者会员信息。下面我们将深入探讨与这段代码相关的多个Delphi编程和餐饮系统开发的关键概念。 ...

    C#代码生成器源码

    3. **代码片段管理**:对于常用的代码段,可以保存为代码片段,方便日后快速插入到项目中。 4. **扩展性**:高级的代码生成器通常允许开发者编写自定义插件,以实现更复杂的代码生成逻辑。 5. **集成开发环境(IDE...

    源代码对比器

    它可以帮助开发者高效地定位修改过的行、新增的代码块以及删除的代码段,从而提高工作效率。 源代码对比器通常具有以下关键功能: 1. 差异高亮:对比器会以不同的颜色或标记显示不同文件间的差异,使得用户能快速...

    【JavaScript源代码】为网站代码块pre标签增加一个复制代码按钮代码.docx

    在实际应用中,这段代码可能需要进行浏览器兼容性测试,确保在不同的浏览器环境中也能正常工作。虽然提到了Chrome已通过测试,但其他浏览器可能需要额外的兼容性处理。 最后,描述中还提到了一个在线测试的DEMO链接...

    网页内运行代码网页内运行代码

    随着Web技术的发展,JavaScript也衍生出许多框架和库,如jQuery、React、Vue和Angular,它们简化了DOM操作,提高了开发效率,同时带来了更丰富的功能。 在实际应用中,为了保证代码的安全性,浏览器对网页内运行的...

    超级跑跑UCE代码

    这段代码包含了许多数值和一些可能是函数、变量或者特定指令的符号。接下来,我们将尝试解读这些信息,并将其归纳为几个主要的知识点。 ### 知识点一:代码结构与组成 在给定的内容中,可以看到许多数值,例如`...

    ASP.NET学习积累的代码段

    这个压缩包“ASP.NET学习积累的代码段”显然是一个宝贵的资源,包含了作者在长期实践中整理的ASP.NET基础知识和代码示例,非常适合初学者用来学习和理解这个技术。 在ASP.NET中,基础控件是构建网页界面的关键元素...

Global site tag (gtag.js) - Google Analytics