1 String a = "1991\12\16";2 String[] split = a.split("\\");3 System.out.println(new Gson().toJson(split));报错java.util.regex.Pa...
分类:
编程语言 时间:
2016-01-26 00:30:22
阅读次数:
450
列举一些在前端开发中遇到的一些错误信息和解决办法错误信息解决办法Uncaught SyntaxError: Unexpected token o使传入的字符串不是符合严格的JSON格式会抛出异常,o意思是传入了一个对象,返回查看传入参数的格式; parseJSON的使用注意事项Uncaught Sy...
分类:
Web程序 时间:
2016-01-19 15:50:36
阅读次数:
147
如果在使用Innosetup打包软件时,如果出现Interal error: CallSpawnServer: Unexpected response: $0.错误,如下图: 可以查看 Innosetup的脚步文件 xxx.iss文件的OutputBaseFilename字段OutputBas...
分类:
其他好文 时间:
2016-01-15 12:46:12
阅读次数:
815
一次在使用json.dumps()过程中,出现错误提示:ERROR:"UnicodeDecodeError: 'utf8' codec can't decode byte 0xe1 in position 5: unexpected end of data"通过错误提示我们知道,肯定是编码问题,找到...
分类:
Web程序 时间:
2016-01-06 15:51:24
阅读次数:
147
控制台输出:1.谷歌:Uncaught SyntaxError: Unexpected identifier2.火狐:SyntaxError: missing ] after element list3.IE andEdge:SCRIPT1007: 缺少 ']'错误代码: setTimeout($r...
分类:
其他好文 时间:
2016-01-05 20:51:25
阅读次数:
181
CentOS这两天服务器出了问题了,提示如下:unexpected inconsistency;RUN fsck MANUALLYAn error occurred during the filesystem checkPropping you to shell the system will re...
分类:
其他好文 时间:
2016-01-04 13:08:12
阅读次数:
213
在vs2015 RC中创建了WindowsUniversal程序,部署到手机时发生以下异常导致程序无法部署:Error:DEP0001 : Unexpected Error: A Prerequisite for an install could not be satisfied. (Excepti...
分类:
移动开发 时间:
2015-12-27 01:07:12
阅读次数:
461
原文链接:http://metronuggets.com/2015/12/03/got-unexpected-extra-languages-in-your-uwp-store-submission/如果你最近已经尝试过提交 Windows 10 App 到应用商店的话,可能会遇到需要输入某种你不打...
分类:
编程语言 时间:
2015-12-25 20:48:47
阅读次数:
209
linux下运行shell脚本出现错误:syntax error near unexpected token '$'\r'' 这是因为文件在编写时的回车是DOS的"\r\n",而正确的应该是"\n",所以需要将文件内所有的"\r\n"替换为"\n",如将1.sh修改另存为2.sh,有以下简单的...
分类:
系统相关 时间:
2015-12-20 15:47:27
阅读次数:
254