疑惑问题
文章平均质量分 62
xie592030956
这个作者很懒,什么都没留下…
展开
-
Android Studio 4.1以上模板Dome
因使用MVPArms 里面有用到 MVPArms-Module-Template 模板代码,但是在Android Studio 4.1以上不支持那种方式了,so,摸索几天弄了个支持新版的插件版 arms-template-plugin ,此文应该可以给想自定义模板代码的一个基础说明吧 1.使用JetBrains IntelliJ 插件模板 打开 [intellij-platform-plugin-template](https://github.com/JetBrains/intellij-platform原创 2021-04-22 16:57:59 · 581 阅读 · 3 评论 -
OKHttpForm表单修改请求编码的问题
因Form表单提交在OKHttp里有个 FormBody,但是呢FormBody里的是默认用utf-8编码发送的不能修改public final class FormBody extends RequestBody { private static final MediaType CONTENT_TYPE = MediaType.parse("application/x-www-fo原创 2017-02-08 11:23:36 · 4126 阅读 · 0 评论 -
java中getter 和 setter 方法有什么意义?为什么不用public代替GS?
知乎里的一个答案:https://www.zhihu.com/question/21401198 的确可以暴露,如果1. 所有内外代码都是你自己写;2. 这个模块再也不改了;3. 不会继承它,或者继承但不改变语义。 David John Wheeler有一句名言: “All problems in computer science can be solved by another level原创 2017-01-18 13:44:38 · 5778 阅读 · 0 评论