<?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>java Archives - onlinetutorialspoint</title>
	<atom:link href="https://onlinetutorialspoint.com/category/java/feed/" rel="self" type="application/rss+xml" />
	<link>https://onlinetutorialspoint.com/category/java/</link>
	<description>OnlineTutorialsPoint</description>
	<lastBuildDate>Thu, 01 May 2025 10:33:20 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.8.2</generator>

<image>
	<url>https://onlinetutorialspoint.com/wp-content/uploads/2016/01/cropped-apple-icon-152x152-32x32.png</url>
	<title>java Archives - onlinetutorialspoint</title>
	<link>https://onlinetutorialspoint.com/category/java/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Mastering Java&#8217;s String trim() Method: A Beginner&#8217;s Guide</title>
		<link>https://onlinetutorialspoint.com/java/sting-trim-method-in-java/</link>
					<comments>https://onlinetutorialspoint.com/java/sting-trim-method-in-java/#respond</comments>
		
		<dc:creator><![CDATA[Sameer Ali]]></dc:creator>
		<pubDate>Thu, 01 May 2025 03:09:04 +0000</pubDate>
				<category><![CDATA[java]]></category>
		<category><![CDATA[java string]]></category>
		<category><![CDATA[string]]></category>
		<guid isPermaLink="false">https://www.onlinetutorialspoint.com/?p=12291</guid>

					<description><![CDATA[<p>Ever wondered how to clean up messy strings in Java? The trim() method is your go-to tool for removing unwanted whitespace from the start and end of a string. Whether it's spaces, tabs, or newlines, this method ensures your strings look neat and tidy. Let’s dive into how it works, explore practical examples, and uncover</p>
<p>The post <a href="https://onlinetutorialspoint.com/java/sting-trim-method-in-java/">Mastering Java&#8217;s String trim() Method: A Beginner&#8217;s Guide</a> appeared first on <a href="https://onlinetutorialspoint.com">onlinetutorialspoint</a>.</p>
]]></description>
		
					<wfw:commentRss>https://onlinetutorialspoint.com/java/sting-trim-method-in-java/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Mastering Java&#8217;s String toLowerCase() Method: A Beginner&#8217;s Guide</title>
		<link>https://onlinetutorialspoint.com/java/string-tolowercase-method-in-java/</link>
					<comments>https://onlinetutorialspoint.com/java/string-tolowercase-method-in-java/#respond</comments>
		
		<dc:creator><![CDATA[Sameer Ali]]></dc:creator>
		<pubDate>Mon, 29 Apr 2024 13:11:07 +0000</pubDate>
				<category><![CDATA[java]]></category>
		<guid isPermaLink="false">https://www.onlinetutorialspoint.com/?p=12264</guid>

					<description><![CDATA[<p>Want to standardize your strings in Java? The toLowerCase() method is a simple yet powerful tool for converting all characters in a string to lowercase. Whether you're processing user input or formatting data, this method ensures consistency. Let’s explore how it works, dive into practical examples, and uncover tips to make the most of it!</p>
<p>The post <a href="https://onlinetutorialspoint.com/java/string-tolowercase-method-in-java/">Mastering Java&#8217;s String toLowerCase() Method: A Beginner&#8217;s Guide</a> appeared first on <a href="https://onlinetutorialspoint.com">onlinetutorialspoint</a>.</p>
]]></description>
		
					<wfw:commentRss>https://onlinetutorialspoint.com/java/string-tolowercase-method-in-java/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Java &#8211; How to check whether a string is palindrome</title>
		<link>https://onlinetutorialspoint.com/java/how-to-check-whether-a-string-is-palindrome/</link>
					<comments>https://onlinetutorialspoint.com/java/how-to-check-whether-a-string-is-palindrome/#respond</comments>
		
		<dc:creator><![CDATA[chandrashekhar]]></dc:creator>
		<pubDate>Sat, 30 Dec 2023 06:04:48 +0000</pubDate>
				<category><![CDATA[java]]></category>
		<category><![CDATA[Core Java]]></category>
		<category><![CDATA[core java interview questions]]></category>
		<guid isPermaLink="false">https://www.onlinetutorialspoint.com/?p=13464</guid>

					<description><![CDATA[<p>In Java, verifying if a string is a palindrome involves examining its characters from both ends and confirming equality. The following Java program illustrates how to perform this palindrome check. Palindrome.java public class Palindrome { public static boolean isPalindrome(String str) { int left = 0; int right = str.length() - 1; while (left &lt; right)</p>
<p>The post <a href="https://onlinetutorialspoint.com/java/how-to-check-whether-a-string-is-palindrome/">Java &#8211; How to check whether a string is palindrome</a> appeared first on <a href="https://onlinetutorialspoint.com">onlinetutorialspoint</a>.</p>
]]></description>
		
					<wfw:commentRss>https://onlinetutorialspoint.com/java/how-to-check-whether-a-string-is-palindrome/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Top 20 Java Streams API interview questions</title>
		<link>https://onlinetutorialspoint.com/java/top-20-java-streams-api-interview-questions/</link>
					<comments>https://onlinetutorialspoint.com/java/top-20-java-streams-api-interview-questions/#respond</comments>
		
		<dc:creator><![CDATA[chandrashekhar]]></dc:creator>
		<pubDate>Sun, 12 Feb 2023 07:16:43 +0000</pubDate>
				<category><![CDATA[java]]></category>
		<category><![CDATA[java interview questions]]></category>
		<category><![CDATA[Stream API interview]]></category>
		<guid isPermaLink="false">https://www.onlinetutorialspoint.com/?p=13400</guid>

					<description><![CDATA[<p>The Java Streams API is a powerful tool for processing large amounts of data in an efficient and scalable way. As a result, it is a popular topic in Java interviews, with many employers seeking to understand a candidate's knowledge and experience with the API. To prepare for a Java Streams API interview, it's important</p>
<p>The post <a href="https://onlinetutorialspoint.com/java/top-20-java-streams-api-interview-questions/">Top 20 Java Streams API interview questions</a> appeared first on <a href="https://onlinetutorialspoint.com">onlinetutorialspoint</a>.</p>
]]></description>
		
					<wfw:commentRss>https://onlinetutorialspoint.com/java/top-20-java-streams-api-interview-questions/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Integer.bitcount() method in Java</title>
		<link>https://onlinetutorialspoint.com/java/integer-bitcount-method-in-java/</link>
					<comments>https://onlinetutorialspoint.com/java/integer-bitcount-method-in-java/#respond</comments>
		
		<dc:creator><![CDATA[Sweety]]></dc:creator>
		<pubDate>Fri, 06 Jan 2023 04:46:47 +0000</pubDate>
				<category><![CDATA[java]]></category>
		<category><![CDATA[bitcount]]></category>
		<category><![CDATA[integer]]></category>
		<guid isPermaLink="false">https://www.onlinetutorialspoint.com/?p=13123</guid>

					<description><![CDATA[<p>Integer.bitCount() method in Java In Java, the bitCount() method is a static method of the Integer wrapper class. It returns the total number of one bit in two's complement binary representation of the given integer value. However, if the value is a character, it will return the number of one bit in the binary equivalent</p>
<p>The post <a href="https://onlinetutorialspoint.com/java/integer-bitcount-method-in-java/">Integer.bitcount() method in Java</a> appeared first on <a href="https://onlinetutorialspoint.com">onlinetutorialspoint</a>.</p>
]]></description>
		
					<wfw:commentRss>https://onlinetutorialspoint.com/java/integer-bitcount-method-in-java/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>super keyword in Java Example</title>
		<link>https://onlinetutorialspoint.com/java/super-keyword-in-java-example/</link>
					<comments>https://onlinetutorialspoint.com/java/super-keyword-in-java-example/#respond</comments>
		
		<dc:creator><![CDATA[Sweety]]></dc:creator>
		<pubDate>Mon, 02 Jan 2023 16:27:51 +0000</pubDate>
				<category><![CDATA[java]]></category>
		<category><![CDATA[super]]></category>
		<guid isPermaLink="false">https://www.onlinetutorialspoint.com/?p=13197</guid>

					<description><![CDATA[<p>How to use super keyword in Java In Java, super is used to refer to the parent class constructor, variables or method. In other words, when we have a method in the derived class that overrides the method of the base class then we can use the super keyword to call the method of base</p>
<p>The post <a href="https://onlinetutorialspoint.com/java/super-keyword-in-java-example/">super keyword in Java Example</a> appeared first on <a href="https://onlinetutorialspoint.com">onlinetutorialspoint</a>.</p>
]]></description>
		
					<wfw:commentRss>https://onlinetutorialspoint.com/java/super-keyword-in-java-example/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Java Hashmap entrySet() Example</title>
		<link>https://onlinetutorialspoint.com/java/java-hashmap-entryset-example/</link>
					<comments>https://onlinetutorialspoint.com/java/java-hashmap-entryset-example/#respond</comments>
		
		<dc:creator><![CDATA[Sameer Ali]]></dc:creator>
		<pubDate>Sat, 11 Jun 2022 11:38:20 +0000</pubDate>
				<category><![CDATA[java]]></category>
		<category><![CDATA[entryset]]></category>
		<category><![CDATA[hashmap]]></category>
		<guid isPermaLink="false">https://www.onlinetutorialspoint.com/?p=12858</guid>

					<description><![CDATA[<p>The entrySet() in Hashmap is used to get the mapping of the hashmap in a set view. Method signature: The signature for entrySet() is shown below: public Set&lt;Map.Entry&lt;K,V&gt;&gt; entrySet() Methods parameters and return type: Parameter: It doesn't take any parameters. Return type: It returns a copy of a Hashmap. Throws: N/A. Hashmap entrySet() Example: In</p>
<p>The post <a href="https://onlinetutorialspoint.com/java/java-hashmap-entryset-example/">Java Hashmap entrySet() Example</a> appeared first on <a href="https://onlinetutorialspoint.com">onlinetutorialspoint</a>.</p>
]]></description>
		
					<wfw:commentRss>https://onlinetutorialspoint.com/java/java-hashmap-entryset-example/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Java Hashmap keySet() Example</title>
		<link>https://onlinetutorialspoint.com/java/java-hashmap-keyset-example/</link>
					<comments>https://onlinetutorialspoint.com/java/java-hashmap-keyset-example/#respond</comments>
		
		<dc:creator><![CDATA[Sameer Ali]]></dc:creator>
		<pubDate>Fri, 10 Jun 2022 11:31:23 +0000</pubDate>
				<category><![CDATA[java]]></category>
		<guid isPermaLink="false">https://www.onlinetutorialspoint.com/?p=12861</guid>

					<description><![CDATA[<p>The keySet() in Hashmap is used to get a set of the keys present in a hashmap. Method signature: The signature for keySet() is shown below: public Set keySet() Methods parameters and return type: Parameter: It doesn't take any parameters. Return type: It returns a set of keys. Throws: N/A. Hashmap keySet() Example: In this</p>
<p>The post <a href="https://onlinetutorialspoint.com/java/java-hashmap-keyset-example/">Java Hashmap keySet() Example</a> appeared first on <a href="https://onlinetutorialspoint.com">onlinetutorialspoint</a>.</p>
]]></description>
		
					<wfw:commentRss>https://onlinetutorialspoint.com/java/java-hashmap-keyset-example/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Java Hashmap computeIfAbsent() Example</title>
		<link>https://onlinetutorialspoint.com/java/java-hashmap-computeifabsent-example/</link>
					<comments>https://onlinetutorialspoint.com/java/java-hashmap-computeifabsent-example/#respond</comments>
		
		<dc:creator><![CDATA[Sameer Ali]]></dc:creator>
		<pubDate>Thu, 09 Jun 2022 06:13:56 +0000</pubDate>
				<category><![CDATA[java]]></category>
		<category><![CDATA[hashmap]]></category>
		<guid isPermaLink="false">https://www.onlinetutorialspoint.com/?p=12866</guid>

					<description><![CDATA[<p>The computeIfAbsent() in Java computes a given value by using a provided operation function. Method signature: The signature for computeIfAbsent() is shown below: public V computeIfAbsent(K key, Function&lt;? super K, ? extends V&gt; Function) Methods parameters and return type: Parameter: It takes a key and a function as a parameter. We perform an operation given</p>
<p>The post <a href="https://onlinetutorialspoint.com/java/java-hashmap-computeifabsent-example/">Java Hashmap computeIfAbsent() Example</a> appeared first on <a href="https://onlinetutorialspoint.com">onlinetutorialspoint</a>.</p>
]]></description>
		
					<wfw:commentRss>https://onlinetutorialspoint.com/java/java-hashmap-computeifabsent-example/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Java String lastIndexOf() Example</title>
		<link>https://onlinetutorialspoint.com/java/java-string-lastindexof-example/</link>
					<comments>https://onlinetutorialspoint.com/java/java-string-lastindexof-example/#respond</comments>
		
		<dc:creator><![CDATA[Sameer Ali]]></dc:creator>
		<pubDate>Sat, 21 May 2022 06:13:15 +0000</pubDate>
				<category><![CDATA[java]]></category>
		<guid isPermaLink="false">https://www.onlinetutorialspoint.com/?p=12207</guid>

					<description><![CDATA[<p>If you want to know the last index position of a substring or a character in a string, then use the lastIndexOf() method in Java. It returns the index position, but if the substring or a character is not available in a string, the method will return -1. Method signature: The signature for a lastIndexOf()</p>
<p>The post <a href="https://onlinetutorialspoint.com/java/java-string-lastindexof-example/">Java String lastIndexOf() Example</a> appeared first on <a href="https://onlinetutorialspoint.com">onlinetutorialspoint</a>.</p>
]]></description>
		
					<wfw:commentRss>https://onlinetutorialspoint.com/java/java-string-lastindexof-example/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
