├── .gitignore ├── .idea ├── compiler.xml ├── copyright │ └── profiles_settings.xml ├── gradle.xml ├── misc.xml ├── modules.xml └── runConfigurations.xml ├── MyHttpUtilsServer ├── .classpath ├── .mymetadata ├── .project ├── .settings │ ├── .jsdtscope │ ├── org.eclipse.core.resources.prefs │ ├── org.eclipse.jdt.core.prefs │ ├── org.eclipse.wst.common.component │ ├── org.eclipse.wst.common.project.facet.core.xml │ ├── org.eclipse.wst.jsdt.ui.superType.container │ └── org.eclipse.wst.jsdt.ui.superType.name ├── WebRoot │ ├── META-INF │ │ └── MANIFEST.MF │ ├── WEB-INF │ │ ├── classes │ │ │ └── com │ │ │ │ └── hdl │ │ │ │ └── myhttputils │ │ │ │ ├── StringServlet.class │ │ │ │ ├── UpLoadServlet.class │ │ │ │ └── UserLogin.class │ │ ├── lib │ │ │ ├── commons-fileupload-1.3.jar │ │ │ └── commons-io-1.2.jar │ │ └── web.xml │ └── index.jsp └── src │ └── com │ └── hdl │ └── myhttputils │ ├── StringServlet.java │ ├── UpLoadServlet.java │ └── UserLogin.java ├── README.md ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── hdl │ │ └── myhttputilssimple │ │ └── ExampleInstrumentedTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── hdl │ │ │ └── myhttputilssimple │ │ │ ├── bean │ │ │ ├── IPBean.java │ │ │ └── LoginBean.java │ │ │ ├── utils │ │ │ └── ToastUtils.java │ │ │ └── view │ │ │ ├── DownloadActivity.java │ │ │ ├── IPQueryActivity.java │ │ │ ├── LoginActivity.java │ │ │ ├── MainActivity.java │ │ │ ├── UploadActivity.java │ │ │ └── UpperCaseActivity.java │ └── res │ │ ├── layout │ │ ├── activity_download.xml │ │ ├── activity_ip_query.xml │ │ ├── activity_login.xml │ │ ├── activity_main.xml │ │ ├── activity_upload.xml │ │ └── activity_upper_case.xml │ │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxxhdpi │ │ └── ic_launcher.png │ │ ├── values-w820dp │ │ └── dimens.xml │ │ └── values │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── test │ └── java │ └── com │ └── hdl │ └── myhttputilssimple │ └── ExampleUnitTest.java ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── myhttputils ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── hdl │ │ └── myhttputils │ │ ├── MyHttpUtils.java │ │ ├── base │ │ └── GlobalFied.java │ │ ├── bean │ │ ├── CommCallback.java │ │ ├── HttpBody.java │ │ ├── ICommCallback.java │ │ └── StringCallBack.java │ │ ├── module │ │ ├── DownLoadHttpRequester.java │ │ ├── GetHttpRequester.java │ │ ├── HttpRequester.java │ │ ├── PostHttpRequester.java │ │ ├── ProvideHttpRequester.java │ │ └── UpLoadHttpRequester.java │ │ └── utils │ │ └── FailedMsgUtils.java │ └── res │ └── values │ └── strings.xml └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangdali/MyHttpUtils/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangdali/MyHttpUtils/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangdali/MyHttpUtils/HEAD/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangdali/MyHttpUtils/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangdali/MyHttpUtils/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangdali/MyHttpUtils/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangdali/MyHttpUtils/HEAD/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /MyHttpUtilsServer/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangdali/MyHttpUtils/HEAD/MyHttpUtilsServer/.classpath -------------------------------------------------------------------------------- /MyHttpUtilsServer/.mymetadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangdali/MyHttpUtils/HEAD/MyHttpUtilsServer/.mymetadata -------------------------------------------------------------------------------- /MyHttpUtilsServer/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangdali/MyHttpUtils/HEAD/MyHttpUtilsServer/.project -------------------------------------------------------------------------------- /MyHttpUtilsServer/.settings/.jsdtscope: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangdali/MyHttpUtils/HEAD/MyHttpUtilsServer/.settings/.jsdtscope -------------------------------------------------------------------------------- /MyHttpUtilsServer/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /MyHttpUtilsServer/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangdali/MyHttpUtils/HEAD/MyHttpUtilsServer/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /MyHttpUtilsServer/.settings/org.eclipse.wst.common.component: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangdali/MyHttpUtils/HEAD/MyHttpUtilsServer/.settings/org.eclipse.wst.common.component -------------------------------------------------------------------------------- /MyHttpUtilsServer/.settings/org.eclipse.wst.common.project.facet.core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangdali/MyHttpUtils/HEAD/MyHttpUtilsServer/.settings/org.eclipse.wst.common.project.facet.core.xml -------------------------------------------------------------------------------- /MyHttpUtilsServer/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /MyHttpUtilsServer/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /MyHttpUtilsServer/WebRoot/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Class-Path: 3 | 4 | -------------------------------------------------------------------------------- /MyHttpUtilsServer/WebRoot/WEB-INF/classes/com/hdl/myhttputils/StringServlet.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangdali/MyHttpUtils/HEAD/MyHttpUtilsServer/WebRoot/WEB-INF/classes/com/hdl/myhttputils/StringServlet.class -------------------------------------------------------------------------------- /MyHttpUtilsServer/WebRoot/WEB-INF/classes/com/hdl/myhttputils/UpLoadServlet.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangdali/MyHttpUtils/HEAD/MyHttpUtilsServer/WebRoot/WEB-INF/classes/com/hdl/myhttputils/UpLoadServlet.class -------------------------------------------------------------------------------- /MyHttpUtilsServer/WebRoot/WEB-INF/classes/com/hdl/myhttputils/UserLogin.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangdali/MyHttpUtils/HEAD/MyHttpUtilsServer/WebRoot/WEB-INF/classes/com/hdl/myhttputils/UserLogin.class -------------------------------------------------------------------------------- /MyHttpUtilsServer/WebRoot/WEB-INF/lib/commons-fileupload-1.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangdali/MyHttpUtils/HEAD/MyHttpUtilsServer/WebRoot/WEB-INF/lib/commons-fileupload-1.3.jar -------------------------------------------------------------------------------- /MyHttpUtilsServer/WebRoot/WEB-INF/lib/commons-io-1.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangdali/MyHttpUtils/HEAD/MyHttpUtilsServer/WebRoot/WEB-INF/lib/commons-io-1.2.jar -------------------------------------------------------------------------------- /MyHttpUtilsServer/WebRoot/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangdali/MyHttpUtils/HEAD/MyHttpUtilsServer/WebRoot/WEB-INF/web.xml -------------------------------------------------------------------------------- /MyHttpUtilsServer/WebRoot/index.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangdali/MyHttpUtils/HEAD/MyHttpUtilsServer/WebRoot/index.jsp -------------------------------------------------------------------------------- /MyHttpUtilsServer/src/com/hdl/myhttputils/StringServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangdali/MyHttpUtils/HEAD/MyHttpUtilsServer/src/com/hdl/myhttputils/StringServlet.java -------------------------------------------------------------------------------- /MyHttpUtilsServer/src/com/hdl/myhttputils/UpLoadServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangdali/MyHttpUtils/HEAD/MyHttpUtilsServer/src/com/hdl/myhttputils/UpLoadServlet.java -------------------------------------------------------------------------------- /MyHttpUtilsServer/src/com/hdl/myhttputils/UserLogin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangdali/MyHttpUtils/HEAD/MyHttpUtilsServer/src/com/hdl/myhttputils/UserLogin.java -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangdali/MyHttpUtils/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangdali/MyHttpUtils/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangdali/MyHttpUtils/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/androidTest/java/com/hdl/myhttputilssimple/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangdali/MyHttpUtils/HEAD/app/src/androidTest/java/com/hdl/myhttputilssimple/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangdali/MyHttpUtils/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/com/hdl/myhttputilssimple/bean/IPBean.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangdali/MyHttpUtils/HEAD/app/src/main/java/com/hdl/myhttputilssimple/bean/IPBean.java -------------------------------------------------------------------------------- /app/src/main/java/com/hdl/myhttputilssimple/bean/LoginBean.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangdali/MyHttpUtils/HEAD/app/src/main/java/com/hdl/myhttputilssimple/bean/LoginBean.java -------------------------------------------------------------------------------- /app/src/main/java/com/hdl/myhttputilssimple/utils/ToastUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangdali/MyHttpUtils/HEAD/app/src/main/java/com/hdl/myhttputilssimple/utils/ToastUtils.java -------------------------------------------------------------------------------- /app/src/main/java/com/hdl/myhttputilssimple/view/DownloadActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangdali/MyHttpUtils/HEAD/app/src/main/java/com/hdl/myhttputilssimple/view/DownloadActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/hdl/myhttputilssimple/view/IPQueryActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangdali/MyHttpUtils/HEAD/app/src/main/java/com/hdl/myhttputilssimple/view/IPQueryActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/hdl/myhttputilssimple/view/LoginActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangdali/MyHttpUtils/HEAD/app/src/main/java/com/hdl/myhttputilssimple/view/LoginActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/hdl/myhttputilssimple/view/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangdali/MyHttpUtils/HEAD/app/src/main/java/com/hdl/myhttputilssimple/view/MainActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/hdl/myhttputilssimple/view/UploadActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangdali/MyHttpUtils/HEAD/app/src/main/java/com/hdl/myhttputilssimple/view/UploadActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/hdl/myhttputilssimple/view/UpperCaseActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangdali/MyHttpUtils/HEAD/app/src/main/java/com/hdl/myhttputilssimple/view/UpperCaseActivity.java -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_download.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangdali/MyHttpUtils/HEAD/app/src/main/res/layout/activity_download.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_ip_query.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangdali/MyHttpUtils/HEAD/app/src/main/res/layout/activity_ip_query.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_login.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangdali/MyHttpUtils/HEAD/app/src/main/res/layout/activity_login.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangdali/MyHttpUtils/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_upload.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangdali/MyHttpUtils/HEAD/app/src/main/res/layout/activity_upload.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_upper_case.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangdali/MyHttpUtils/HEAD/app/src/main/res/layout/activity_upper_case.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangdali/MyHttpUtils/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangdali/MyHttpUtils/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangdali/MyHttpUtils/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangdali/MyHttpUtils/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangdali/MyHttpUtils/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangdali/MyHttpUtils/HEAD/app/src/main/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangdali/MyHttpUtils/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangdali/MyHttpUtils/HEAD/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangdali/MyHttpUtils/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangdali/MyHttpUtils/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/src/test/java/com/hdl/myhttputilssimple/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangdali/MyHttpUtils/HEAD/app/src/test/java/com/hdl/myhttputilssimple/ExampleUnitTest.java -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangdali/MyHttpUtils/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangdali/MyHttpUtils/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangdali/MyHttpUtils/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangdali/MyHttpUtils/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangdali/MyHttpUtils/HEAD/gradlew.bat -------------------------------------------------------------------------------- /myhttputils/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /myhttputils/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangdali/MyHttpUtils/HEAD/myhttputils/build.gradle -------------------------------------------------------------------------------- /myhttputils/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangdali/MyHttpUtils/HEAD/myhttputils/proguard-rules.pro -------------------------------------------------------------------------------- /myhttputils/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangdali/MyHttpUtils/HEAD/myhttputils/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /myhttputils/src/main/java/com/hdl/myhttputils/MyHttpUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangdali/MyHttpUtils/HEAD/myhttputils/src/main/java/com/hdl/myhttputils/MyHttpUtils.java -------------------------------------------------------------------------------- /myhttputils/src/main/java/com/hdl/myhttputils/base/GlobalFied.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangdali/MyHttpUtils/HEAD/myhttputils/src/main/java/com/hdl/myhttputils/base/GlobalFied.java -------------------------------------------------------------------------------- /myhttputils/src/main/java/com/hdl/myhttputils/bean/CommCallback.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangdali/MyHttpUtils/HEAD/myhttputils/src/main/java/com/hdl/myhttputils/bean/CommCallback.java -------------------------------------------------------------------------------- /myhttputils/src/main/java/com/hdl/myhttputils/bean/HttpBody.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangdali/MyHttpUtils/HEAD/myhttputils/src/main/java/com/hdl/myhttputils/bean/HttpBody.java -------------------------------------------------------------------------------- /myhttputils/src/main/java/com/hdl/myhttputils/bean/ICommCallback.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangdali/MyHttpUtils/HEAD/myhttputils/src/main/java/com/hdl/myhttputils/bean/ICommCallback.java -------------------------------------------------------------------------------- /myhttputils/src/main/java/com/hdl/myhttputils/bean/StringCallBack.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangdali/MyHttpUtils/HEAD/myhttputils/src/main/java/com/hdl/myhttputils/bean/StringCallBack.java -------------------------------------------------------------------------------- /myhttputils/src/main/java/com/hdl/myhttputils/module/DownLoadHttpRequester.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangdali/MyHttpUtils/HEAD/myhttputils/src/main/java/com/hdl/myhttputils/module/DownLoadHttpRequester.java -------------------------------------------------------------------------------- /myhttputils/src/main/java/com/hdl/myhttputils/module/GetHttpRequester.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangdali/MyHttpUtils/HEAD/myhttputils/src/main/java/com/hdl/myhttputils/module/GetHttpRequester.java -------------------------------------------------------------------------------- /myhttputils/src/main/java/com/hdl/myhttputils/module/HttpRequester.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangdali/MyHttpUtils/HEAD/myhttputils/src/main/java/com/hdl/myhttputils/module/HttpRequester.java -------------------------------------------------------------------------------- /myhttputils/src/main/java/com/hdl/myhttputils/module/PostHttpRequester.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangdali/MyHttpUtils/HEAD/myhttputils/src/main/java/com/hdl/myhttputils/module/PostHttpRequester.java -------------------------------------------------------------------------------- /myhttputils/src/main/java/com/hdl/myhttputils/module/ProvideHttpRequester.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangdali/MyHttpUtils/HEAD/myhttputils/src/main/java/com/hdl/myhttputils/module/ProvideHttpRequester.java -------------------------------------------------------------------------------- /myhttputils/src/main/java/com/hdl/myhttputils/module/UpLoadHttpRequester.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangdali/MyHttpUtils/HEAD/myhttputils/src/main/java/com/hdl/myhttputils/module/UpLoadHttpRequester.java -------------------------------------------------------------------------------- /myhttputils/src/main/java/com/hdl/myhttputils/utils/FailedMsgUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangdali/MyHttpUtils/HEAD/myhttputils/src/main/java/com/hdl/myhttputils/utils/FailedMsgUtils.java -------------------------------------------------------------------------------- /myhttputils/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangdali/MyHttpUtils/HEAD/myhttputils/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app', ':myhttputils' 2 | --------------------------------------------------------------------------------