mac svn 删除.svn隐藏文件的命令打开终端,进到所在的目录,然后出入一下代码find . -name ".svn" | xargs rm -Rf1、将文件checkout到本地目录svn checkout path(path是服务器上的目录)例如:svn checkout svn://192...
分类:
其他好文 时间:
2014-06-15 20:51:44
阅读次数:
307
1、项目根目录(tomcat、web项目)String path = ServletActionContext.getServletContext().getRealPath("");System.out.println(path);想要获取图片存放的位置,则为String path = Servl...
分类:
其他好文 时间:
2014-06-15 16:27:14
阅读次数:
205
1、OPENCVGPU重新编译+自己的文件 注意点: 1、生成OPENCV.sln解决方案后,在ALL_build的属性中,添加相应目录: ALL_BUILD中的Debug和Release上的Microsoft.Cpp.Win32.user CUDA 路径: Include Directories:...
分类:
其他好文 时间:
2014-06-15 06:14:29
阅读次数:
225
参考http://www.cnblogs.com/sunada2005/p/3536891.html然后它的这一步修改一下打开eclipse->windows->preferences->java->build path->user libraries,点击new,新建一个library,可取名为h...
分类:
系统相关 时间:
2014-06-15 00:57:07
阅读次数:
295
$infos = @{}$infos.Path ='c:\Windows'$infos.Recurse =$true$infos.Filter ='*.log'$infos.ErrorAction ='SilentlyContinue'$infos.Remove('Recurse')dir@info...
分类:
其他好文 时间:
2014-06-14 21:49:24
阅读次数:
234
Question:Given a binary tree, find the maximum path sum.The path may start and end at any node in the tree.For example:Given the below binary tree, .....
分类:
其他好文 时间:
2014-06-14 20:59:07
阅读次数:
188
Decription:Given a triangle, find the minimum path sum from top to bottom. Each step you may move to adjacent numbers on the row below.For example, gi...
分类:
其他好文 时间:
2014-06-14 19:46:12
阅读次数:
251
一、编译Irrlicht引擎代码包(zip)可以从sourceforge.net上面下载,解压到项目的目录下(~/MineBlock/irrlicht)。安装编译需要的包:sudo apt-get -y install build-essential xserver-xorg-dev x11prot...
分类:
其他好文 时间:
2014-06-14 18:03:41
阅读次数:
213
一、首先介绍几条命令:将Hello.java文件编译成Hello.class文件F:\adt-bundle-windows-x86_64\sdk\build-tools\android-4.4.2>javac -source 1.6 -target 1.6 Hello.java将Hello.clas...
分类:
移动开发 时间:
2014-06-14 09:04:57
阅读次数:
323
有段时间没打开Android Studio, 今天尝试编译个App却出现如下错误. Error:The SDK Build Tools revision (19.0.3) is too low for project ':app'. Minimum required is 19.1.0 折腾了一下,...
分类:
移动开发 时间:
2014-06-14 08:21:35
阅读次数:
299