Register Register Member Login Member Login Member Login Forgot Password ??
PHP , ASP , ASP.NET, VB.NET, C#, Java , jQuery , Android , iOS , Windows Phone



Clound SSD Virtual Server

Android HttpPost / HttpGet (UTF-8 Encoding)

Android HttpPost / HttpGet (UTF-8 Encoding) จากบทความ HttpGet and HttpPost ที่ได้เขียนไว้ก็หลายปีแล้ว เป็นรูปแบบการรับ-ส่งค่าจาก Android ไปยัง PHP กับ MySQL ผ่าน HTTP ที่ผ่านมาบทตวามนี้ได้รับความนิยมมากมาย เพราะสามารถใช้งานได้ดี แต่ปัญหาที่พบก็คือการรับส่งข้อความภาษาไทยไม่สามารถแสดงผลภาษาไทยได้อย่างถูกต้อง ซึ่งวิธีการแก้ไขมันก็แสนจะง่ายมาก เพียงเพิ่มคำสั่ง UrlEncodedFormEntity พร้อมกับ Parameters ที่อยู่ในรูปแบบของ UTF-8 ก็สามารถที่จะส่งไปยัง PHP ที่รองรับภาษาไทยได้

Android HttpGet and HttpPost

วิธีการปรับแต่งให้ HttpPost ส่งข้อความในรูปแบบของ UTF-8 นั้นง่ายมาก ๆ เพียงเพิ่มคำสั่ง UrlEncodedFormEntity เข้าไป

เพิ่มคำสั่ง
httpPost.setEntity(new UrlEncodedFormEntity(params,"UTF-8"));


HttpPost (UTF-8 Encoding)
	public static String getHttpPost(String url,List<NameValuePair> params) {
		StringBuilder str = new StringBuilder();
		HttpClient client = new DefaultHttpClient();
		HttpPost httpPost = new HttpPost(url);
		
		try {
			httpPost.setEntity(new UrlEncodedFormEntity(params,"UTF-8"));
			HttpResponse response = client.execute(httpPost);
			StatusLine statusLine = response.getStatusLine();
			int statusCode = statusLine.getStatusCode();
			if (statusCode == 200) { // Status OK
				HttpEntity entity = response.getEntity();
				InputStream content = entity.getContent();
				BufferedReader reader = new BufferedReader(new InputStreamReader(content));
				String line;
				while ((line = reader.readLine()) != null) {
					str.append(line);
				}
			} else {
				Log.e("Log", "Failed to download result..");
			}
		} catch (ClientProtocolException e) {
			e.printStackTrace();
		} catch (IOException e) {
			e.printStackTrace();
		}
		return str.toString();
	}


HttpGet (UTF-8 Encoding)
	public static String getHttpGet(String url) {
		StringBuilder str = new StringBuilder();
		HttpClient client = new DefaultHttpClient();
		HttpGet httpGet = new HttpGet(url);
		try {
			HttpResponse response = client.execute(httpGet);
			StatusLine statusLine = response.getStatusLine();
			int statusCode = statusLine.getStatusCode();
			if (statusCode == 200) { // Download OK
				HttpEntity entity = response.getEntity();
				InputStream content = entity.getContent();
				BufferedReader reader = new BufferedReader(new InputStreamReader(content));
				String line;
				while ((line = reader.readLine()) != null) {
					str.append(line);
				}
			} else {
				Log.e("Log", "Failed to download result..");
			}
		} catch (ClientProtocolException e) {
			e.printStackTrace();
		} catch (IOException e) {
			e.printStackTrace();
		}
		return str.toString();
	}


Android PHP/MySQL (UTF-8) : รับ-ส่งค่าภาษาไทย ระหว่าง Android กับ MySQL







   
Share


ช่วยกันสนับสนุนรักษาเว็บไซต์ความรู้แห่งนี้ไว้ด้วยการสนับสนุน Source Code 2.0 ของทีมงานไทยครีเอท


ลองใช้ค้นหาข้อมูล


   


Bookmark.   
       
  By : ThaiCreate.Com Team (บทความเป็นลิขสิทธิ์ของเว็บไทยครีเอทห้ามนำเผยแพร่ ณ เว็บไซต์อื่น ๆ)
  Score Rating :  
  Create/Update Date : 2015-11-16 15:50:37 / 2015-11-16 21:45:56
  Download : No files
 Sponsored Links / Related

 
Android open localhost Website in Emulator (AVD) (http://localhost - http://127.0.0.1)
Rating :

 
Android Image Resource from URL Website
Rating :

 
Android Download Save file from Server
Rating :

 
Android open Web URL in Web Browser (WebView Widgets)
Rating :

 
Android HttpGet and HttpPost
Rating :

 
Android Connect to the URL Web Server (HttpURLConnection)
Rating :

 
Android Upload Send file to Web Server (Website)
Rating :

 
Android Multiple Upload Send file to Server and Show Items ProgressBar in ListView
Rating :

 
Android PHP/MySQL (UTF-8) : รับ-ส่ง ภาษาไทย ระหว่าง Android กับ MySQL
Rating :


ThaiCreate.Com Forum


Comunity Forum Free Web Script
Jobs Freelance Free Uploads
Free Web Hosting Free Tools

สอน PHP ผ่าน Youtube ฟรี
สอน Android การเขียนโปรแกรม Android
สอน Windows Phone การเขียนโปรแกรม Windows Phone 7 และ 8
สอน iOS การเขียนโปรแกรม iPhone, iPad
สอน Java การเขียนโปรแกรม ภาษา Java
สอน Java GUI การเขียนโปรแกรม ภาษา Java GUI
สอน JSP การเขียนโปรแกรม ภาษา Java
สอน jQuery การเขียนโปรแกรม ภาษา jQuery
สอน .Net การเขียนโปรแกรม ภาษา .Net
Free Tutorial
สอน Google Maps Api
สอน Windows Service
สอน Entity Framework
สอน Android
สอน Java เขียน Java
Java GUI Swing
สอน JSP (Web App)
iOS (iPhone,iPad)
Windows Phone
Windows Azure
Windows Store
Laravel Framework
Yii PHP Framework
สอน jQuery
สอน jQuery กับ Ajax
สอน PHP OOP (Vdo)
Ajax Tutorials
SQL Tutorials
สอน SQL (Part 2)
JavaScript Tutorial
Javascript Tips
VBScript Tutorial
VBScript Validation
Microsoft Access
MySQL Tutorials
-- Stored Procedure
MariaDB Database
SQL Server Tutorial
SQL Server 2005
SQL Server 2008
SQL Server 2012
-- Stored Procedure
Oracle Database
-- Stored Procedure
SVN (Subversion)
แนวทางการทำ SEO
ปรับแต่งเว็บให้โหลดเร็ว


Hit Link
   







Load balance : Server 01
ThaiCreate.Com Logo
© www.ThaiCreate.Com. 2003-2024 All Rights Reserved.
ไทยครีเอทบริการ จัดทำดูแลแก้ไข Web Application ทุกรูปแบบ (PHP, .Net Application, VB.Net, C#)
[Conditions Privacy Statement] ติดต่อโฆษณา 081-987-6107 อัตราราคา คลิกที่นี่