java
农民小飞侠
如果放弃了,那还谈什么理想
展开
-
【hadoop】../java8/bin/java: No such file or directory
今天在使用hadoop下载文件的时候,出现了下面的问题。我当时一脸茫然,因为我把hadoop-client 2.1.2版本下载下来后,未做任何更改。注意到是java8没找到,但是java8已经包含到hadoop-client里面去了,有点奇怪。原创 2022-11-18 18:01:25 · 967 阅读 · 0 评论 -
java StegoShare提取图片中的隐藏文件
最近用StegoShare提取了一张图片的隐藏文件,我觉得还是挺有意思的,所以这里分享一下我的提取过程。环境macjdk 1.8流程运行StegoShare.jarjava -jar StegoShare.jarterminal会出现如下的输出:javax.swing.UnsupportedLookAndFeelException: [The Microsoft Windows Look and Feel - com.sun.java.swing.plaf.windows.Window原创 2021-05-24 08:41:18 · 630 阅读 · 0 评论 -
java 把json字符串转换为JsonObject,解析不固定格式的json字符串
今天在做项目的时候,需要把json转换为jsonObject,由于json格式不是固定的,还需要先把所有的键取出来,然后再遍历取值。需要用到GSON,maven依赖为:<dependency> <groupId>com.google.code.gson</groupId> <artifactId>gson</artif...原创 2019-08-10 18:55:09 · 2614 阅读 · 0 评论 -
Mac Homebrew安装JDK8
安装最新版JDKbrew cask install adoptopenjdk安装某个特定版本的jdk:brew tap AdoptOpenJDK/openjdkbrew cask install adoptopenjdk8brew cask install adoptopenjdk9参考文献[1].How can I install java openjdk 8 on ...原创 2019-06-29 11:30:00 · 24534 阅读 · 2 评论 -
java调用云小蜜示例教程(调用sdk版本)
最近又用java写了云小蜜的调用教程,这里总结一下,首先maven依赖为:<!-- https://mvnrepository.com/artifact/com.aliyun/aliyun-java-sdk-chatbot --><dependency> <groupId>com.aliyun</groupId> <ar...原创 2019-04-24 17:22:02 · 2379 阅读 · 1 评论 -
play framework2.6 Refused to display in a frame because it set 'X-Frame-Options' to 'DENY'
今天在利用Ckeditor做文件上传的时候出现了下面的错误:Refused to display in a frame because it set 'X-Frame-Options' to 'DENY'解决方法修改application.conf里面的headers下面的配置。 # The X-Frame-Options header. If null, the hea...原创 2019-03-31 22:34:51 · 271 阅读 · 0 评论 -
playframework 2.6 refused to apply inline style because it violates the following Content Security
今天在做文件上传的时候,出现了下面的错误:Refused to apply inline style because it violates the following Content Security Policy directive: "default-src 'self'". Either the 'unsafe-inline' keyword, a hash ('sha256-4Su...原创 2019-03-31 22:26:45 · 13005 阅读 · 0 评论 -
微信java开发 authorized callback domain verification error 10003
今天在用测试公众号的时候出现了上述的错误:authorized callback domain verification error 10003搞得我很绝望,最后发现。这里面填的url要去掉http,我真是晕哭。参考文献[1].authorized callback domain verification error 10003 微信公众号.https://www.ji...原创 2019-03-13 17:19:41 · 2190 阅读 · 0 评论 -
playframework 2.6 mac Waiting for lock on /Users/eric/.ivy2/.sbt.ivy.lock to be available.
今天在运行play java的程序的时候,出现了下面的错误:Waiting for lock on /Users/eric/.ivy2/.sbt.ivy.lock to be available.我猜是我run了很多次,进程还没有被杀死的原因。我的电脑是mac解决方法ps aux | grep sbtkill -9 process_id把ps找出来的进程全部干掉就行了。...原创 2019-03-17 09:59:21 · 533 阅读 · 0 评论 -
Caused by: java.sql.SQLException: Error executing stmt ordererror
今天我在运行junit的时候,用了一个order字段:@Constraints.Required@Column(columnDefinition = "int(11) NOT NULL COMMENT '顺序'")private Integer order;然后就报错了:com.google.inject.CreationException: Unable to create ...原创 2019-03-20 09:48:44 · 1967 阅读 · 0 评论 -
Caused by: org.h2.jdbc.JdbcSQLException: Unknown data type: "JSON"; SQL statement:
今天在写ebean写json语句的时候出现了上述的错误:com.google.inject.CreationException: Unable to create injector, see the following errors:1) Error injecting constructor, javax.persistence.PersistenceException: Failed...原创 2019-03-20 09:43:49 · 5677 阅读 · 0 评论 -
mac Android Studio自动补全功能没有
我最近在用android studio 开发的时候有点痛苦,因为代码不给提示,要自己去找相应的方法和类。解决方法file=>Power Save Mode把勾去掉就行了,默认是省电模式我也是晕了。参考文献[1].Android Studio自动补全功能.https://blog.csdn.net/lihenair/article/details/47301489...原创 2019-03-10 13:28:32 · 1840 阅读 · 0 评论 -
application installation failed android studio
今天在做Android开发的时候出现了上面的问题:application installation failed....我的是mac环境,模拟器和努比亚手机都显示这个问题。解决方法在菜单栏里面:Clean Project>>Build APK>>Run然后就运行成功了哈参考文献[1].Application Installation...原创 2019-03-10 11:59:17 · 186 阅读 · 0 评论 -
springboot实现用户信息授权获取用户的id
最近用微信公众号做第三方登录,看着网上的教程,真是有苦难言,写得乱七八糟。不过也发现了比较好的文章。我这里记录一下我实现的过程。pom.xml是这个<dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId...原创 2019-03-13 21:31:20 · 5860 阅读 · 0 评论 -
java 吉时开奖网数据爬取中奖的数据
今天有个人要爬取这个网站的数据,地址为:https://ig185.com/mkjw/html/PCEGG_180/index.html然后我分析了这个网站的代码,发现这个网站是用structs来写的,然后分析网络连接发现,可以直接调用url:https://ig185.com/kaijiangweb/getHistoryList.do?date=&lotCode=PCEG...原创 2019-02-16 21:41:33 · 10704 阅读 · 27 评论 -
Failed to bind properties under 'spring.datasource' to javax.sql.DataSource
我在配置springboot的druid的时候,出现了下面的问题:Failed to bind properties under 'spring.datasource' to javax.sql.DataSource我的DruidConfiguration.java类为:package com.ccnu.demo2;import com.alibaba.druid.pool.D...原创 2018-12-09 11:17:39 · 1680 阅读 · 1 评论 -
java.sql.SQLException: Could not retrieve transation read-only status server
最近在做整合springboot的项目,但是在整合mybatis出现了下面的问题:java.sql.SQLException: Could not retrieve transation read-only status server at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:998) ~[mysql-conne...原创 2018-12-06 21:49:25 · 3337 阅读 · 2 评论 -
java.lang.NoSuchMethodError: javax.servlet.http.HttpServletResponse.getHeaders(Ljava/lang/String;)Lj
我在运行的spark demo的时候,其官网网址为http://sparkjava.com/documentation#getting-started 当在浏览器输入网址:http://localhost:4567/hello的时候,报错了,错误信息为:java.lang.NoSuchMethodError: javax.servlet.http.HttpServletResponse原创 2017-12-21 22:05:20 · 4819 阅读 · 0 评论 -
SLF4J: Failed to load class “org.slf4j.impl.StaticLoggerBinder”. error
当我运行一个sparkjava demo的时候,出现了下面的问题:SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder".SLF4J: Defaulting to no-operation (NOP) logger implementationSLF4J: See http://www.slf4j.org/codes.原创 2017-12-21 21:30:40 · 649 阅读 · 0 评论