<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>what is the difference between get and post method in java - Wikitechy</title>
	<atom:link href="https://www.wikitechy.com/interview-questions/tag/what-is-the-difference-between-get-and-post-method-in-java/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.wikitechy.com/interview-questions/tag/what-is-the-difference-between-get-and-post-method-in-java/</link>
	<description>Interview Questions</description>
	<lastBuildDate>Thu, 04 Aug 2022 06:34:51 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>

<image>
	<url>https://www.wikitechy.com/interview-questions/wp-content/uploads/2025/10/cropped-wikitechy-icon-32x32.png</url>
	<title>what is the difference between get and post method in java - Wikitechy</title>
	<link>https://www.wikitechy.com/interview-questions/tag/what-is-the-difference-between-get-and-post-method-in-java/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>What is the difference between GET and POST Method ?</title>
		<link>https://www.wikitechy.com/interview-questions/php/what-is-the-difference-between-get-and-post-method/</link>
					<comments>https://www.wikitechy.com/interview-questions/php/what-is-the-difference-between-get-and-post-method/#respond</comments>
		
		<dc:creator><![CDATA[webmaster]]></dc:creator>
		<pubDate>Thu, 04 Aug 2022 06:33:30 +0000</pubDate>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[difference between get and post in rest api]]></category>
		<category><![CDATA[difference between get and post method in html with example]]></category>
		<category><![CDATA[get and post method difference in java]]></category>
		<category><![CDATA[get and post method example]]></category>
		<category><![CDATA[get and post method in java]]></category>
		<category><![CDATA[get and post method in php]]></category>
		<category><![CDATA[get method]]></category>
		<category><![CDATA[what is the difference between get and post method]]></category>
		<category><![CDATA[what is the difference between get and post method in html]]></category>
		<category><![CDATA[what is the difference between get and post method in java]]></category>
		<category><![CDATA[what is the difference between get and post method in javascript]]></category>
		<category><![CDATA[what is the difference between get and post method in php]]></category>
		<category><![CDATA[what is the difference between get and post method in rest api]]></category>
		<category><![CDATA[what is the difference between get and post method in web api]]></category>
		<category><![CDATA[what is the difference between get and post method mcq]]></category>
		<category><![CDATA[what is the difference between get and post methods in html discuss]]></category>
		<guid isPermaLink="false">https://www.wikitechy.com/interview-questions/?p=4576</guid>

					<description><![CDATA[                        GET                          POST In browser history parameters remain because they are the part of the URL In browser history parameters remain because they are the part of the URL It can be bookmarked It cannot be bookmarked If the HTML is stored in the browser cache, GET requests are re-executed but may [&#8230;]]]></description>
										<content:encoded><![CDATA[<p><img fetchpriority="high" decoding="async" class="alignnone size-full wp-image-4578 aligncenter" src="https://www.wikitechy.com/interview-questions/wp-content/uploads/2022/08/get-post-method.png" alt="" width="956" height="526" srcset="https://www.wikitechy.com/interview-questions/wp-content/uploads/2022/08/get-post-method.png 956w, https://www.wikitechy.com/interview-questions/wp-content/uploads/2022/08/get-post-method-300x165.png 300w, https://www.wikitechy.com/interview-questions/wp-content/uploads/2022/08/get-post-method-768x423.png 768w, https://www.wikitechy.com/interview-questions/wp-content/uploads/2022/08/get-post-method-390x215.png 390w, https://www.wikitechy.com/interview-questions/wp-content/uploads/2022/08/get-post-method-820x451.png 820w" sizes="(max-width: 956px) 100vw, 956px" /></p>
<table width="0">
<tbody>
<tr>
<td width="335"><strong> </strong></p>
<p><strong>                      GET </strong></td>
<td width="335"><strong> </strong></p>
<p><strong>                       POST</strong></td>
</tr>
<tr>
<td width="335">In browser history parameters remain because they are the part of the URL</td>
<td width="335">In browser history parameters remain because they are the part of the URL</td>
</tr>
<tr>
<td width="335">It can be bookmarked</td>
<td width="335">It cannot be bookmarked</td>
</tr>
<tr>
<td width="335">If the HTML is stored in the browser cache, GET requests are re-executed but may not be re-submitted to server</p>
<p>&nbsp;</td>
<td width="335">The browser alerts the user that data will need to be re-submitted</td>
</tr>
<tr>
<td width="335">It can send but the parameter data is limited to what we can stuff into the URL</td>
<td width="335">It can send parameters, including uploading files to the server</td>
</tr>
<tr>
<td width="335">Hacking becomes easier for script kiddies</td>
<td width="335">Hacking becomes more difficult</td>
</tr>
<tr>
<td width="335">There is restriction on form data type, only ASCII characters allowed</td>
<td width="335">There is no restrictions. Binary data is also allowed</td>
</tr>
<tr>
<td width="335"><a href="https://www.wikitechy.com/php/php-get">PHP GET</a> method is less secure than POST because data sent is part of the URL. So, its saved in browser history or server logs in plaintext</td>
<td width="335"><a href="https://www.wikitechy.com/php/php-post">PHP POST</a> is little safer than GET because the parameters are not stored in browser history or web- server logs</td>
</tr>
<tr>
<td width="335">There are restrictions on form data length</td>
<td width="335">There are no restrictions on form data length</td>
</tr>
<tr>
<td width="335">GET method should not be used while sending passwords or other sensitive information</td>
<td width="335">POST method used when sending passwords or other sensitive information.</td>
</tr>
<tr>
<td width="335">GET method is visible to everyone in address bar and it has limits on amount of information to send</td>
<td width="335">POST method variables are not displayed in the URL</td>
</tr>
<tr>
<td width="335">It can be cached</td>
<td width="335">It cannot be cached</td>
</tr>
</tbody>
</table>
<p><img decoding="async" class="alignnone size-full wp-image-4577 aligncenter" src="https://www.wikitechy.com/interview-questions/wp-content/uploads/2022/08/get-method.gif" alt="" width="1920" height="1080" /></p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.wikitechy.com/interview-questions/php/what-is-the-difference-between-get-and-post-method/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
