报错的信息为:The type org.xmlpull.v1.XmlPullParser cannot be resolved. /**  * 扩展XStream 支持CDATA  */ private static XStream xstream = new XStream(new XppDriver(){ public HierarchicalStreamWriter createWriter(Writer out) { return new PrettyPrintWriter(out){…
wget url 报错:unable to resolve host address ‘url’,显然是无法解析主机地址,这就能看出是DNS解析的问题.解决办法就是配置可用的dns 一般是修改成为谷歌提供的免费DNS:8.8.8.8 8.8.4.4,今天教大家如何修改ubuntu的DNS域名解析服务器. ①.要更改ubuntu DNS必须编辑文件 - “/etc/resolv.conf”,打开“终端应用程序”-“附件” - “终端”,(如果是server版本就不需要这系列操作)在终端里输入下面的…
在操作已经创建好的数据库时,若是添加新的实体类或者修改原有数据库上下文,会报如下错误: The model backing the 'StudentDbContext' context has changed since the database was created. Consider using Code First Migrations to update the database(http://go.microsoft.com/fwlink/?LinkId=238269). 解决方法:…
一开始.py文件中的函数名大小写错了,但是在终端是对的,报错: 'module' object has no attribute '某函数名' 后来就去修改.py文件.结果重新import该.py文件.依然报错,报错信息一模一样. 回去.py文件看了半天还是没发现任何为题,而且这个文件里的别的函数都没问题,就这个函数一直报错. 最后一次,不用import这个文件,而是reload这个文件,结果居然好了.原来: (一下内容摘自:http://blog.csdn.net/five3/article/…
有时在使用idea通过Spring Initailizr创建项目时,默认只能创建最近的版本的SpringBoot项目. 这是如果想要换成版本,就可以在项目创建好了之后,在pom文件中直接将版本修改过来. 如下所示 比如在创建项目时默认的版本为2.2.2版本: <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artif…
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 -bash: warning: setlocale: LC_CTYPE: cannot change locale (EN_US.UTF-8)   把linux系统从中文…
TextView private TextView textView; ... textView =(TextView)findViewById(R.id.textView); textView.setText("set text success"); 控制: <TextView android:id="@+id/textView" android:layout_width="match_parent" android:layout_hei…
案例 今天在使用artTemplate做开发时,遇到一个比较奇葩的问题,就是使用json对象去获取值得时候,报如下错误: Template Error <temp> function anonymous($data,$filename) {'use strict';var $utils=this,$helpers=$utils.$helpers,$escape=$utils.$escape,crediteaseReportData=$data.crediteaseReportData,$eac…
一般在公司内容配置Maven时会在settings.xml文件下配置私服nexus地址,那么修改完之后在Eclipse中如果不指定用户目录级别的settings.xml文件会出现找不到包的问题. settings.xml的优先级: ~/.m2/settings.xml $M2_HOME/conf/settings.xml 而如果~/.m2目录下没有这个文件时,就会默认使用$M2_HOME/conf目录下的. 所以这会出现一个现象,在命令行下可以正常执行,但是在Eclipse中不能. 原因是Ecl…
CS8357  C# The specified version string contains wildcards, which are not compatible with determinism. Either remove wildcards from the version string, or disable determinism for this compilation CS8357    指定的版本字符串包含通配符,这与确定性不兼容.请删除版本字符串中的通配符,或禁用此编译的…