王吉元-NWPU

导航

 
上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 21 下一页

2013年10月14日

摘要: 写:package com.wjy.write;import java.io.BufferedWriter;import java.io.FileOutputStream;import java.io.OutputStreamWriter;public class FileWriter { public void writeContent(){ BufferedWriter bw=null; try { bw=new BufferedWriter(new OutputStreamWriter(new FileOutputStream("E... 阅读全文
posted @ 2013-10-14 19:39 王吉元 阅读(224) 评论(0) 推荐(0) 编辑
 

2013年10月9日

摘要: http://sharpsvn.open.collab.net/docs/walkthrough.htm 阅读全文
posted @ 2013-10-09 15:14 王吉元 阅读(487) 评论(0) 推荐(0) 编辑
 

2013年10月8日

摘要: 左边是一个TreeViewer,右边是一个TableViewer.当点击左边的treeitem的时候,右边的tableViewer要将该item的子节点信息显示出来。就像这样:左边的treeViewer添加事件响应,代码如下:Tree tree = treeViewer.getTree();tree.addSelectionListener(new SelectionAdapter() { @Override public void widgetSelected(SelectionEvent e) { TreeItem ... 阅读全文
posted @ 2013-10-08 16:00 王吉元 阅读(825) 评论(0) 推荐(0) 编辑
 
摘要: public List searchByTree(String userName,String passwd,String SVNServerUrl,String dirUrl){ //这里有点像 storeManager的查看功能,但是是从 应用模型的目录开始查看的。 SVNURL repositoryUrl=null; SVNRepository repository=null; SVNRepositoryFactoryImpl.setup(); try { repositoryUrl=SVNUR... 阅读全文
posted @ 2013-10-08 14:15 王吉元 阅读(1026) 评论(0) 推荐(0) 编辑
 

2013年9月29日

摘要: 源网址:http://wiki.svnkit.com/Committing_To_A_RepositoryEditing Operation: commiting to a repositoryThe low-level layer provides for an ability tobuildandchangetree-like hierarchies in a repository giving adeveloper an abstracteditor. With such an editor you make edits to a repository manually (i.e. ex 阅读全文
posted @ 2013-09-29 15:43 王吉元 阅读(993) 评论(0) 推荐(1) 编辑
 

2013年9月27日

摘要: add操作:delete操作: 阅读全文
posted @ 2013-09-27 11:36 王吉元 阅读(895) 评论(0) 推荐(0) 编辑
 
摘要: 阅读全文
posted @ 2013-09-27 10:50 王吉元 阅读(1207) 评论(0) 推荐(0) 编辑
 

2013年9月26日

摘要: 阅读全文
posted @ 2013-09-26 10:53 王吉元 阅读(798) 评论(0) 推荐(0) 编辑
 
摘要: 打印SVNkit版本库中的结构:函数如下:调用方法如下:listEntries(repository, ""); System.out.println("XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"); 效果如下:版本库的结构是这样的: 阅读全文
posted @ 2013-09-26 10:23 王吉元 阅读(399) 评论(0) 推荐(0) 编辑
 
摘要: 版本冲突原因:假设A、B两个用户都在版本号为100的时候,更新了kingtuns.txt这个文件,A用户在修改完成之后提交kingtuns.txt到服务器,这个时候提交成功,这个时候kingtuns.txt文件的版本号已经变成101了。同时B用户在版本号为100的kingtuns.txt文件上作修改,修改完成之后提交到服务器时,由于不是在当前最新的101版本上作的修改,所以导致提交失败。解决方法,若要使用用户A的提交的文件。选择冲突的文件--》右键--》Team-->与资源库同步。即可。但是若要使用用户B提交的文件作为新的库文件,或者是用户A和用户B综合的修改。则要使用如下的方案:1,当 阅读全文
posted @ 2013-09-26 09:59 王吉元 阅读(393) 评论(0) 推荐(0) 编辑
 
上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 21 下一页