[ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:2.3.1:compile (default-compile) on project XX: Compilation failure: Comp...
分类:
编程语言 时间:
2014-08-15 12:00:48
阅读次数:
251
Mingw gcc 4.91下载DistroDateGCCBoostChanges12.08/9/20144.9.11.56.0Restored GCC's default mode to C++03. (Compile with -std=c++11 for C++11, or -std=c++1...
分类:
其他好文 时间:
2014-08-14 20:12:49
阅读次数:
268
String content = “testContent”; String regex="^[a-zA-Z0-9\u4E00-\u9FA5]+$"; Pattern pattern = Pattern.compile(regex); Matcher ma...
分类:
编程语言 时间:
2014-08-14 19:41:29
阅读次数:
282
Most headache is not code issue, but compile problem对于 iOS 的编译机制,暂时不是了解太多,不过,知识是一个积累的过程,以后会把编译方面以及第三方管理工具或者路径设置等等问题放在这里。先上 stackoverflowe 链接http://sta...
分类:
其他好文 时间:
2014-08-14 13:31:08
阅读次数:
360
public static void main(String[] args) { String regex = ""; Pattern pattern = Pattern.compile(regex, Pattern.MULTILINE); String content = ""; Matc...
分类:
编程语言 时间:
2014-08-13 18:25:47
阅读次数:
227
环境准备。
安装mingw并设置好系统PATH。
mingw。windows下的GUN编程环境。
系统变量的作用——可执行文件的搜索路径。这样在cmd直接输入g++就能调用到D:\Program Files (x86)\CodeBlocks\MinGW\bin\g++.exe。
打开cmd后的默认工作目录为 C:\Users\Administrator。
g++与gcc。
...
分类:
其他好文 时间:
2014-08-12 00:42:03
阅读次数:
321
Phoenix(sql on hbase)简介
介绍:
Phoenix is a SQL skin over HBase delivered as a client-embedded JDBC driver targeting low latency queries over HBase data. Phoenix takes your SQL query, compile...
分类:
数据库 时间:
2014-08-11 21:28:33
阅读次数:
589
public static String getonerow(String allLine,String myfind) { Pattern pattern = Pattern.compile(".*?"); Matcher matcher = pattern.matcher(all...
分类:
编程语言 时间:
2014-08-11 11:38:32
阅读次数:
287
最近升级到Cocos2d-x 3.2正式版,iOS程序编译没任何问题,结果使用cocos compile -p android编译生成APK程序,结果悲剧了,出现以下错误。Android NDK: Invalid APP_STL value: c++_static Android NDK: Please use one of the following instead: system st...
分类:
移动开发 时间:
2014-08-10 10:25:20
阅读次数:
302
1、ANT方式 ? ? ? buid.xml内容: <project?name="TestHadoop"?default="compile"?basedir=".">
????<property?name="build"?location="build"?/>
????<path?id="hadoop-classpath">
????...
分类:
Windows程序 时间:
2014-08-08 13:02:06
阅读次数:
2561