赞
踩
初入Android Studio,在访问Web服务器时遇到的一些问题,特写此篇记录一下错误的解决。
初入Android Studio,在进行Web服务器的访问时要用到本地的Web服务器,通过WampServer实现。
本次使用的是WampServer 2.2版本,下载链接附在下方:
https://pan.baidu.com/s/1lpTYUsrcoqPTbgU-LmSi1A
提取码:r47a
(有32位以及64位两个版本)
安装后右下角图标为橙色,正常运行应为绿色。
由于WampServer自带MySQL,而本机上装有其他版本的MySQL,导致冲突。
解决方法:在环境配置中根据安装目录(我这里安装目录是E:\wamp)重新配置MySQL环境变量,如下图:
在系统变量path中加入
最后在WampServer运行图标单击,重新启动所有服务。服务器在线,变成绿色。另外,在WampSever中单击图标点击localhost,若能成功从浏览器进入页面则说明服务器没有问题。
在初期出现问题时,查询服务器橙色的原因大多结果都是修改Apache/http.conf中的端口,但是不改变端口使用原本的80端口也可以成功使服务器顺利启动。因此如果修改了MySQL的问题后服务器正常后不必修改端口号。但是要记住这个端口号,在Android Studio编程中会用到。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<Button
android:id="@+id/btn"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="连接Web服务器"
android:layout_gravity="center"/>
<EditText
android:id="@+id/edittext1"
android:layout_width="250dp"
android:layout_height=
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。