springboot 项目里面用,maven 里面更新不了啊 <dependency> <groupId>com.github.franmontiel</groupId> <artifactId>PersistentCookieJar</artifactId> <version>v1.0.1</version> </dependency>
1
lxk11153 2020-07-04 15:26:08 +08:00
|
2
autoname OP @lxk11153
Could not find artifact com.github.franmontiel:PersistentCookieJar:pom:v1.0.0 in central 总是这样,所有版本都试了, |
3
autoname OP 要 Android 才能用吗,spring boot 不能用吗
|
4
EminemW 2020-07-04 21:53:46 +08:00
你换个源?
|
6
darrenfang 2020-07-05 01:20:29 +08:00
这个包里面只有 aar 文件,没有 jar 文件,springboot 应该是用不了
|
7
witfun 2020-07-05 13:53:51 +08:00
|
8
autoname OP @witfun 感谢老哥,貌似 springboot 项目不能用,只能是安卓端才能用这玩意
郁闷了, 有没有其他 okhttp 自动管理 cookie 封装好的 工具类 推荐个使用下呗, 小白刚接触 java 。自己不会封装 |
10
lxk11153 2020-07-08 11:38:15 +08:00
@autoname #8 1. 可以从 aar 里提取出 jar
2. 用 artifactId: okhttp-urlconnection .cookieJar(new JavaNetCookieJar(new CookieManager())) |
11
lxk11153 2020-07-08 11:43:18 +08:00
#10 append:
java.net.CookieManager 默认是 java.net.InMemoryCookieStore |
13
lxk11153 2020-07-09 16:32:41 +08:00
|