When i run svn up in the folder, i got these error:svn: Error converting entry in directory 'XXXXX' to UTF-8svn: Can't convert string from native enco...
分类:
其他好文 时间:
2014-07-19 21:20:46
阅读次数:
247
Project RootLet’s start by taking a look at the root folder structure.? app/? bootstrap/? vendor/? public/? .gitattributes? .gitignore? artisan? compo...
分类:
其他好文 时间:
2014-07-19 19:10:07
阅读次数:
252
在index.php的第97和98行的注释, // The directory name, relative to the "controllers" folder. Leave blank // if your controller is not in a sub-folder within t....
分类:
其他好文 时间:
2014-07-19 00:18:35
阅读次数:
212
1. OverviewSome time ago, I was automating a few tasks with PowerShell and needed to set NTFS permissions on a folder. I was tempted to use the good o...
分类:
其他好文 时间:
2014-07-18 19:31:42
阅读次数:
359
今天用eclipse,当打算run一个带有main函数的class时,出现editor does not contain a main type的错误框。
baidu了一下,迅速解决问题:原来这个class所在包没有被添加到build path中。
解决方法:在左侧的package explorer中右击这个class所在包的上一级目录--build path--use as source f...
分类:
其他好文 时间:
2014-07-17 20:36:18
阅读次数:
225
一.使用myeclipse 创建一个新的 maven项目. (ps:1.在filter过滤的时候输入 webapp 选择"maven-archetype-webapp". 2.在main下建一个java文件夹(建source folder可能不能成功)) 具体可参考:http://www.cnb.....
分类:
编程语言 时间:
2014-07-17 14:23:04
阅读次数:
4142
拷贝控制示例
那么接下来尽情欣赏这个案例吧!!!
/**
* 功能:拷贝控制示例
* 时间:2014年7月14日10:57:39
* 作者:cutter_point
*/
#include
#include
#include
#include
using namespace std;
class Folder;
/**
Message类
*/
class Message
{
fr...
分类:
编程语言 时间:
2014-07-14 17:39:36
阅读次数:
293
如图所示:
可以返回目录路径。
操作如下:
function BrowseFolder(){
try{
var Message = "请选择文件夹"; //选择框提示信息
var Shell = new ActiveXObject( "Shell.Application" );
var Folder = Shell.BrowseForFolder(0,Messag...
分类:
Web程序 时间:
2014-07-13 18:26:11
阅读次数:
241
FileStream fs1 = new FileStream(folder + strPath, FileMode.Open); byte[] bytes = new byte[fs1.Length]; fs1.Read(byte...
分类:
其他好文 时间:
2014-07-11 11:07:59
阅读次数:
213
VBS基础篇 - 对象(6) - Folder对象描述:提供对文件所有属性的访问,从FSO对象的GetFile方法获得使用Folder对象要用Folder对象模型来编程必须先用FSO对象的Getfolder方法获取文件的句柄 1、使用CreateObject方法来创建FileSystemObject...
分类:
其他好文 时间:
2014-07-11 08:52:03
阅读次数:
238