<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: skptricks</title>
    <description>The latest articles on DEV Community by skptricks (@skptricks).</description>
    <link>https://dev.to/skptricks</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F78012%2Fb2c4f5b3-08d2-41b9-8fb5-bfbd5454a450.png</url>
      <title>DEV Community: skptricks</title>
      <link>https://dev.to/skptricks</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/skptricks"/>
    <language>en</language>
    <item>
      <title>React Native Custom Common Toast for both Android iOS App</title>
      <dc:creator>skptricks</dc:creator>
      <pubDate>Thu, 15 Aug 2019 17:54:13 +0000</pubDate>
      <link>https://dev.to/skptricks/react-native-custom-common-toast-for-both-android-ios-app-1j00</link>
      <guid>https://dev.to/skptricks/react-native-custom-common-toast-for-both-android-ios-app-1j00</guid>
      <description>&lt;p&gt;Source : &lt;a href="https://www.skptricks.com/2019/08/react-native-custom-common-toast-for-android-ios.html"&gt; React Native Custom Common Toast for both Android iOS App&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;This tutorial explains how to create custom toast message in android or ios device in react native application. Toast is the one of the oldest component in android applications history.Toast would only obtain text message and automatically fill on screen according to given message. By default react native Android app supports Toast message but the iOS dose not support Toast. Toast is the one of the oldest component in android applications history. Its been present since the beginning of Android app development and continuously used by millions of developers. Toast is used to give a simple feedback on any given task when the task is completed.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--f4ecv8EP--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://1.bp.blogspot.com/-hQa5D-yMxVo/XVVeD1NFXQI/AAAAAAAADUE/Kon5pWpkOyEJic0tXbDHSlK9b9fYqFcpQCLcBGAs/s400/react-native-custom-common-toast-for-android-ios.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--f4ecv8EP--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://1.bp.blogspot.com/-hQa5D-yMxVo/XVVeD1NFXQI/AAAAAAAADUE/Kon5pWpkOyEJic0tXbDHSlK9b9fYqFcpQCLcBGAs/s400/react-native-custom-common-toast-for-android-ios.jpg"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.skptricks.com/2019/08/react-native-custom-common-toast-for-android-ios.html"&gt;Click here to read more&lt;/a&gt;&lt;/p&gt;

</description>
      <category>reactnative</category>
      <category>react</category>
      <category>android</category>
      <category>ios</category>
    </item>
    <item>
      <title>How to Show Toast Message in React Native for Android Only</title>
      <dc:creator>skptricks</dc:creator>
      <pubDate>Thu, 15 Aug 2019 17:53:04 +0000</pubDate>
      <link>https://dev.to/skptricks/how-to-show-toast-message-in-react-native-for-android-only-emh</link>
      <guid>https://dev.to/skptricks/how-to-show-toast-message-in-react-native-for-android-only-emh</guid>
      <description>&lt;p&gt;Source : &lt;a href="https://www.skptricks.com/2019/08/how-to-show-toast-message-in-react-native.html"&gt;How to Show Toast Message in React Native for Android Only &lt;/a&gt;&lt;/p&gt;

&lt;p&gt;This tutorial explains how to generate toast message in react native application. React Native Toast is a component which is related to Android only and can be used to display information for the short period of time. A Toast contains the message to be displayed quickly and disappears after some time.&lt;/p&gt;

&lt;p&gt;NOTE : React Native Toast is only for those who are targetting to Android platform only IOS doesn’t support Toast.&lt;/p&gt;

&lt;p&gt;Code Snippet To Use Toast Message In React Native :&lt;br&gt;
ToastAndroid.show(message, duration)&lt;br&gt;
ToastAndroid.showWithGravity(message, duration, gravity)&lt;br&gt;
ToastAndroid.showWithGravityAndOffset(message, duration, gravity, xOffset, yOffset)&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--tb318NBR--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://1.bp.blogspot.com/-IMR1IcwNB1s/XVVHS5OG9dI/AAAAAAAADTE/FXmtFVS7CWsBJsWpXMYIWypriGXMR1vwwCLcBGAs/s400/how-to-show-toast-message-in-react-native.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--tb318NBR--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://1.bp.blogspot.com/-IMR1IcwNB1s/XVVHS5OG9dI/AAAAAAAADTE/FXmtFVS7CWsBJsWpXMYIWypriGXMR1vwwCLcBGAs/s400/how-to-show-toast-message-in-react-native.jpg"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.skptricks.com/2019/08/how-to-show-toast-message-in-react-native.html"&gt;Click here to read more &lt;/a&gt;&lt;/p&gt;

</description>
      <category>reactnative</category>
      <category>react</category>
      <category>android</category>
      <category>ios</category>
    </item>
    <item>
      <title>React Native Captcha Code Validation Android &amp; IOS Example</title>
      <dc:creator>skptricks</dc:creator>
      <pubDate>Thu, 15 Aug 2019 17:51:28 +0000</pubDate>
      <link>https://dev.to/skptricks/react-native-captcha-code-validation-android-ios-example-1ehf</link>
      <guid>https://dev.to/skptricks/react-native-captcha-code-validation-android-ios-example-1ehf</guid>
      <description>&lt;p&gt;Source : &lt;a href="https://www.skptricks.com/2019/08/react-native-captcha-code-validation.html"&gt; React Native Captcha Code Validation Android &amp;amp; IOS Example&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;This tutorial explains how to create captcha code in react native application. Nowadays this kind of captcha code is widely used in form validation. Captcha is a type of unpredictable challenge text code written in alphanumeric characters used to make difference between Virus(SPAM) and real humans. Captcha can only be readable by human eyes and only humans can answer the right captcha. It’ll stop spam attacks on Log-In, Sing-Up and Comment pages in web applications. Right now the Captcha is also used in mobile applications to make them secure against SPAM bots.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--eU9LFJMF--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://1.bp.blogspot.com/-bmQOK9g8XTA/XVTg9r90z1I/AAAAAAAADSc/qt1DIRYzOZQ5dAvYOjGB0zkebJujXsjIwCLcBGAs/s400/react-native-captcha-code-validation.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--eU9LFJMF--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://1.bp.blogspot.com/-bmQOK9g8XTA/XVTg9r90z1I/AAAAAAAADSc/qt1DIRYzOZQ5dAvYOjGB0zkebJujXsjIwCLcBGAs/s400/react-native-captcha-code-validation.jpg"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.skptricks.com/2019/08/react-native-captcha-code-validation.html"&gt;Click here to read more&lt;/a&gt;&lt;/p&gt;

</description>
      <category>reactnative</category>
      <category>react</category>
      <category>android</category>
      <category>ios</category>
    </item>
    <item>
      <title>Gift Card Screen using react-native-confetti-cannon</title>
      <dc:creator>skptricks</dc:creator>
      <pubDate>Thu, 15 Aug 2019 17:50:14 +0000</pubDate>
      <link>https://dev.to/skptricks/gift-card-screen-using-react-native-confetti-cannon-3nf0</link>
      <guid>https://dev.to/skptricks/gift-card-screen-using-react-native-confetti-cannon-3nf0</guid>
      <description>&lt;p&gt;Source : &lt;a href="https://www.skptricks.com/2019/08/gift-card-screen-using-react-native-confetti-cannon.html"&gt; Gift Card Screen using react-native-confetti-cannon&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;This tutorial explains how to make a Gift Card Screen using react-native-confetti-cannon for Android and IOS devices in react native application. In this example we are going to discuss step by step and that makes you easier to understand. You can create any types of screens using react-native-confetti-cannon. You have seen this type of animations whenever you got a gift vouchers or any cash back amount.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--V62LwP5A--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://1.bp.blogspot.com/-e_NMHoihGwE/XVOMa-eoavI/AAAAAAAADRw/9cjLULSKswcTgE-uA0juZqNfNkzlM1tZQCLcBGAs/s400/Gift%252BCard%252BScreen%252Busing%252Breact-native-confetti-cannon.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--V62LwP5A--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://1.bp.blogspot.com/-e_NMHoihGwE/XVOMa-eoavI/AAAAAAAADRw/9cjLULSKswcTgE-uA0juZqNfNkzlM1tZQCLcBGAs/s400/Gift%252BCard%252BScreen%252Busing%252Breact-native-confetti-cannon.jpg"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.skptricks.com/2019/08/gift-card-screen-using-react-native-confetti-cannon.html"&gt; Click here to read more&lt;/a&gt;&lt;/p&gt;

</description>
      <category>reactnative</category>
      <category>react</category>
      <category>android</category>
      <category>ios</category>
    </item>
    <item>
      <title>React Native Implement Custom reCaptcha in Android iOS Example</title>
      <dc:creator>skptricks</dc:creator>
      <pubDate>Thu, 15 Aug 2019 17:48:57 +0000</pubDate>
      <link>https://dev.to/skptricks/react-native-implement-custom-recaptcha-in-android-ios-example-2fn6</link>
      <guid>https://dev.to/skptricks/react-native-implement-custom-recaptcha-in-android-ios-example-2fn6</guid>
      <description>&lt;p&gt;Source : &lt;a href="https://www.skptricks.com/2019/08/react-native-implement-custom-recaptcha-android-ios.html"&gt;React Native Implement Custom reCaptcha in Android iOS Example &lt;/a&gt;&lt;/p&gt;

&lt;p&gt;This tutorial explains how to implement custom reCaptcha in Android or IOS device in react native application. This technology is used mostly to block spammers and bots that try to automatically harvest email addresses or try to automatically sign up for or make use of Web sites, blogs or forums. CAPTCHA, whose users include Yahoo and Google, blocks automated systems, which can't read the distorted letters in the graphic. We have decided to create a new library that will give more freedom, be more flexible, and be easy to use simultaneously.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--oHZ_WKXX--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://1.bp.blogspot.com/-jU5rt99XX3w/XVGpjoKEOlI/AAAAAAAADRM/G7h1iQVWLI84UnvlOVxvOXtnljpUw4sEQCLcBGAs/s400/react-native-implement-custom-recaptcha-android-ios.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--oHZ_WKXX--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://1.bp.blogspot.com/-jU5rt99XX3w/XVGpjoKEOlI/AAAAAAAADRM/G7h1iQVWLI84UnvlOVxvOXtnljpUw4sEQCLcBGAs/s400/react-native-implement-custom-recaptcha-android-ios.jpg"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.skptricks.com/2019/08/react-native-implement-custom-recaptcha-android-ios.html"&gt;Click here to read more&lt;br&gt;
 &lt;/a&gt;&lt;/p&gt;

</description>
      <category>reactnative</category>
      <category>react</category>
      <category>android</category>
      <category>ios</category>
    </item>
    <item>
      <title>React Native Remove Repeated Duplicate Object Items from Array</title>
      <dc:creator>skptricks</dc:creator>
      <pubDate>Thu, 15 Aug 2019 17:47:51 +0000</pubDate>
      <link>https://dev.to/skptricks/react-native-remove-repeated-duplicate-object-items-from-array-4gcn</link>
      <guid>https://dev.to/skptricks/react-native-remove-repeated-duplicate-object-items-from-array-4gcn</guid>
      <description>&lt;p&gt;Source : &lt;a href="https://www.skptricks.com/2019/08/react-native-remove-repeated-duplicate-object-items-from-array.html"&gt;React Native Remove Repeated Duplicate Object Items from Array &lt;/a&gt;&lt;/p&gt;

&lt;p&gt;This tutorial explains how to remove repeated and duplicate object item from array in react native application. Sometimes application user add same entries in array by mistake in application and the same entries will make our array longer in size, also it will impact on application load time and performance. So in this example we are going to use below technique to remove duplicate entries in array.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--a55Tek9r--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://1.bp.blogspot.com/-rVcLlZNp-u0/XVAtyEeBubI/AAAAAAAADQM/mPpvB6LUnp8KbHlEZHjlP31_MbEG5BS0ACLcBGAs/s400/react-native-remove-repeated-duplicate-object-items-from-array1.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--a55Tek9r--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://1.bp.blogspot.com/-rVcLlZNp-u0/XVAtyEeBubI/AAAAAAAADQM/mPpvB6LUnp8KbHlEZHjlP31_MbEG5BS0ACLcBGAs/s400/react-native-remove-repeated-duplicate-object-items-from-array1.jpg"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.skptricks.com/2019/08/react-native-remove-repeated-duplicate-object-items-from-array.html"&gt;Click here to read more&lt;/a&gt;&lt;/p&gt;

</description>
      <category>reactnative</category>
      <category>react</category>
      <category>android</category>
      <category>ios</category>
    </item>
    <item>
      <title>React Native Password Encryption and Decryption using Base64 Method</title>
      <dc:creator>skptricks</dc:creator>
      <pubDate>Thu, 15 Aug 2019 17:46:36 +0000</pubDate>
      <link>https://dev.to/skptricks/react-native-password-encryption-and-decryption-using-base64-method-3374</link>
      <guid>https://dev.to/skptricks/react-native-password-encryption-and-decryption-using-base64-method-3374</guid>
      <description>&lt;p&gt;Source : &lt;a href="https://www.skptricks.com/2019/08/react-native-password-encryption-and-decryption-using-base64.html"&gt; React Native Password Encryption and Decryption using Base64 Method&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;This tutorial explains how encrypt and decrypt password text using Base64 method in react native application. Encoding and decoding a string in Base64 with JavaScript can be quite handy. It's in no way meant to be a secure encryption method, but it is extremely useful for writing obfuscated strings to either a document (your webpage) or a cookie file without needing to worry about quotes or characters breaking things. A most famous password encryption technique is known as Base64 encryption which is used by hundreds of websites and mobile applications to store their password.In this example we are going to encrypt and decrypt TextInput field value using Base64 library in react native.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--ZFlPKGuu--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://1.bp.blogspot.com/-1uJ_a-gdTvs/XU_-ETSysXI/AAAAAAAADP4/9FxO_nJY1TIIN1BTECvEPuSe3JGZiHmgwCLcBGAs/s400/react-native-password-encryption-and-decryption-using-base64.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--ZFlPKGuu--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://1.bp.blogspot.com/-1uJ_a-gdTvs/XU_-ETSysXI/AAAAAAAADP4/9FxO_nJY1TIIN1BTECvEPuSe3JGZiHmgwCLcBGAs/s400/react-native-password-encryption-and-decryption-using-base64.jpg"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.skptricks.com/2019/08/react-native-password-encryption-and-decryption-using-base64.html"&gt; Click here to read more&lt;/a&gt;&lt;/p&gt;

</description>
      <category>reactnative</category>
      <category>react</category>
      <category>android</category>
      <category>ios</category>
    </item>
    <item>
      <title>Java Program to Count Number of Words in a File</title>
      <dc:creator>skptricks</dc:creator>
      <pubDate>Thu, 15 Aug 2019 17:45:13 +0000</pubDate>
      <link>https://dev.to/skptricks/java-program-to-count-number-of-words-in-a-file-405n</link>
      <guid>https://dev.to/skptricks/java-program-to-count-number-of-words-in-a-file-405n</guid>
      <description>&lt;p&gt;Source : &lt;a href="https://www.skptricks.com/2019/08/java-program-to-count-number-of-words-in-file.html" rel="noopener noreferrer"&gt; Java Program to Count Number of Words in a File&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;This tutorial explains how to count number of words in a file in java. Find Number of words should be a valuable part. Reason for Counting word occurrence in because almost all the text boxes that rely on user input have a certain limit on the number of characters that can be inserted.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2F1.bp.blogspot.com%2F-cGctIhOpPFc%2FXU_J4w5jR3I%2FAAAAAAAADPQ%2FYWTB6nXxkZEz2vFsiY1rJp92UALKavkqQCLcBGAs%2Fs400%2Fjava-program-to-count-number-of-words-in-file.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2F1.bp.blogspot.com%2F-cGctIhOpPFc%2FXU_J4w5jR3I%2FAAAAAAAADPQ%2FYWTB6nXxkZEz2vFsiY1rJp92UALKavkqQCLcBGAs%2Fs400%2Fjava-program-to-count-number-of-words-in-file.jpg"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.skptricks.com/2019/08/java-program-to-count-number-of-words-in-file.html" rel="noopener noreferrer"&gt; Click here to read more&lt;/a&gt;&lt;/p&gt;

</description>
      <category>java</category>
    </item>
    <item>
      <title>Java Program to Reverse word in the String</title>
      <dc:creator>skptricks</dc:creator>
      <pubDate>Thu, 15 Aug 2019 17:43:37 +0000</pubDate>
      <link>https://dev.to/skptricks/java-program-to-reverse-word-in-the-string-306c</link>
      <guid>https://dev.to/skptricks/java-program-to-reverse-word-in-the-string-306c</guid>
      <description>&lt;p&gt;Source : &lt;a href="https://www.skptricks.com/2019/08/java-program-to-reverse-word-in-string.html"&gt; Java Program to Reverse word in the String&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;This tutorial explains how to reverse word in java. Lets see the following java program to reverse word in string.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--9591ClTW--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://1.bp.blogspot.com/-xGxG0_LLVl8/XU-exfp7jpI/AAAAAAAADO4/vADd_rw5WI8oiKcCXnqCDOQltbByh5OHgCLcBGAs/s400/java-program-to-reverse-word-in-string.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--9591ClTW--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://1.bp.blogspot.com/-xGxG0_LLVl8/XU-exfp7jpI/AAAAAAAADO4/vADd_rw5WI8oiKcCXnqCDOQltbByh5OHgCLcBGAs/s400/java-program-to-reverse-word-in-string.jpg"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.skptricks.com/2019/08/java-program-to-reverse-word-in-string.html"&gt; Click here to read more&lt;/a&gt;&lt;/p&gt;

</description>
      <category>java</category>
    </item>
    <item>
      <title>java Program to Count repeated words in String</title>
      <dc:creator>skptricks</dc:creator>
      <pubDate>Thu, 15 Aug 2019 17:42:02 +0000</pubDate>
      <link>https://dev.to/skptricks/java-program-to-count-repeated-words-in-string-877</link>
      <guid>https://dev.to/skptricks/java-program-to-count-repeated-words-in-string-877</guid>
      <description>&lt;p&gt;Source : &lt;a href="https://www.skptricks.com/2019/08/java-program-to-count-repeated-words-in-string.html"&gt;java Program to Count repeated words in String &lt;/a&gt;&lt;/p&gt;

&lt;p&gt;This tutorial explains how to count word in string in java application. Lets see the Following Java program to counts how many times a word appears in a String or find repeated words. It can help you in to find the most frequent words in a string also check the count which will be equal to one for unique words.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--APZ-ST12--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://1.bp.blogspot.com/-fYoAAvhGToU/XU-cNyXwWcI/AAAAAAAADOk/27uSfKXQ9rInPXFyDTQtsDxkyQHCKvrjwCLcBGAs/s400/java-program-to-count-repeated-words-in-string.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--APZ-ST12--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://1.bp.blogspot.com/-fYoAAvhGToU/XU-cNyXwWcI/AAAAAAAADOk/27uSfKXQ9rInPXFyDTQtsDxkyQHCKvrjwCLcBGAs/s400/java-program-to-count-repeated-words-in-string.jpg"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.skptricks.com/2019/08/java-program-to-count-repeated-words-in-string.html"&gt;Click here to read more&lt;br&gt;
 &lt;/a&gt;&lt;/p&gt;

</description>
      <category>java</category>
    </item>
    <item>
      <title>How to read a text file and search any specific word in java</title>
      <dc:creator>skptricks</dc:creator>
      <pubDate>Thu, 15 Aug 2019 17:40:44 +0000</pubDate>
      <link>https://dev.to/skptricks/how-to-read-a-text-file-and-search-any-specific-word-in-java-3ija</link>
      <guid>https://dev.to/skptricks/how-to-read-a-text-file-and-search-any-specific-word-in-java-3ija</guid>
      <description>&lt;p&gt;Source : &lt;a href="https://www.skptricks.com/2019/08/how-to-read-text-file-and-search-any-specific-word.html"&gt;How to read a text file and search any specific word in java &lt;/a&gt;&lt;/p&gt;

&lt;p&gt;This tutorial explains how to read a text file and search any specific word in java. In order to search any specific word from a text file, we need to first read text file. Here we have provided simple example for reading a text file and search any specific word from that.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--7l4bRFsS--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://1.bp.blogspot.com/-cfIGg8hNeXg/XU-YhTnyugI/AAAAAAAADOQ/CUZbK9AE5bkAoj7M0_RiXcPAoa5SboChwCLcBGAs/s400/how-to-read-text-file-and-search-any-specific-word.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--7l4bRFsS--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://1.bp.blogspot.com/-cfIGg8hNeXg/XU-YhTnyugI/AAAAAAAADOQ/CUZbK9AE5bkAoj7M0_RiXcPAoa5SboChwCLcBGAs/s400/how-to-read-text-file-and-search-any-specific-word.jpg"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.skptricks.com/2019/08/how-to-read-text-file-and-search-any-specific-word.html"&gt;Click here to read more&lt;/a&gt;&lt;/p&gt;

</description>
      <category>java</category>
    </item>
    <item>
      <title>How to get the current home directory in a Java application</title>
      <dc:creator>skptricks</dc:creator>
      <pubDate>Thu, 15 Aug 2019 17:38:47 +0000</pubDate>
      <link>https://dev.to/skptricks/how-to-get-the-current-home-directory-in-a-java-application-3jnc</link>
      <guid>https://dev.to/skptricks/how-to-get-the-current-home-directory-in-a-java-application-3jnc</guid>
      <description>&lt;p&gt;Source : &lt;a href="https://www.skptricks.com/2019/08/how-to-get-current-home-directory-in-java.html"&gt;How to get the current home directory in a Java application &lt;/a&gt;&lt;/p&gt;

&lt;p&gt;This tutorial explains how to get the current home directory in a Java application. You can determine the current directory your Java application is started in using System.getProperty() method and the user.home property, like this:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--IuUBt0rG--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://1.bp.blogspot.com/-2bXp-sQRD80/XUuY01amVkI/AAAAAAAADN4/l7m_5O_4ywE5E6lcFe-fxdWQq9GKNXTGgCLcBGAs/s400/how-to-get-current-home-directory-in-java.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--IuUBt0rG--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://1.bp.blogspot.com/-2bXp-sQRD80/XUuY01amVkI/AAAAAAAADN4/l7m_5O_4ywE5E6lcFe-fxdWQq9GKNXTGgCLcBGAs/s400/how-to-get-current-home-directory-in-java.jpg"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.skptricks.com/2019/08/how-to-get-current-home-directory-in-java.html"&gt;Click here to read more&lt;br&gt;
 &lt;/a&gt;&lt;/p&gt;

</description>
      <category>java</category>
    </item>
  </channel>
</rss>
