<?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>Software development &#8211; WebDevStudy</title>
	<atom:link href="https://www.webdevstudy.com/category/software-development/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.webdevstudy.com</link>
	<description>software engineer development experience</description>
	<lastBuildDate>Wed, 05 Jul 2023 03:54:31 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9</generator>

<image>
	<url>https://www.webdevstudy.com/wp-content/uploads/2023/04/logo-150x150.png</url>
	<title>Software development &#8211; WebDevStudy</title>
	<link>https://www.webdevstudy.com</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>How can flutter TextField input boxes prefix and suffix be displayed without getting focus?</title>
		<link>https://www.webdevstudy.com/2023/07/05/how-can-flutter-textfield-input-boxes-prefix-and-suffix-be-displayed-without-getting-focus/</link>
					<comments>https://www.webdevstudy.com/2023/07/05/how-can-flutter-textfield-input-boxes-prefix-and-suffix-be-displayed-without-getting-focus/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Wed, 05 Jul 2023 03:53:10 +0000</pubDate>
				<category><![CDATA[Software development]]></category>
		<category><![CDATA[flutter]]></category>
		<guid isPermaLink="false">https://www.webdevstudy.com/?p=261</guid>

					<description><![CDATA[How can flutter TextField input boxes prefix and suffix be displayed without getting focus? How can flutter TextField input boxes prefix and suffix be displayed without getting focus?I have a mobile phone verification code login page, the front of the mobile phone number is displayed +86 by default, and the verification code input box is [&#8230;]]]></description>
		
					<wfw:commentRss>https://www.webdevstudy.com/2023/07/05/how-can-flutter-textfield-input-boxes-prefix-and-suffix-be-displayed-without-getting-focus/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to Check If File Exists Use Java</title>
		<link>https://www.webdevstudy.com/2023/07/05/how-to-check-if-file-exists-use-java/</link>
					<comments>https://www.webdevstudy.com/2023/07/05/how-to-check-if-file-exists-use-java/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Wed, 05 Jul 2023 01:57:31 +0000</pubDate>
				<category><![CDATA[Software development]]></category>
		<category><![CDATA[JAVA]]></category>
		<guid isPermaLink="false">https://www.webdevstudy.com/?p=255</guid>

					<description><![CDATA[Let’s see how we can check if file exists use Java. 1. Using File::isFile We can use&#160;File::isFile&#160;to check if a file exists. Using&#160;isFile()&#160;is equivalent to checking if a file exists and is&#160;not&#160;a directory:&#160;file.exists() &#38;&#38; !file.isDirectory(). 2. Using Files::isRegularFile (NIO) We can also use Files::isRegularFile to check for file existence.]]></description>
		
					<wfw:commentRss>https://www.webdevstudy.com/2023/07/05/how-to-check-if-file-exists-use-java/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How git uploads local old projects to the new repository but does not upload log records</title>
		<link>https://www.webdevstudy.com/2023/07/04/how-git-uploads-local-old-projects-to-the-new-repository-but-does-not-upload-log-records/</link>
					<comments>https://www.webdevstudy.com/2023/07/04/how-git-uploads-local-old-projects-to-the-new-repository-but-does-not-upload-log-records/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Tue, 04 Jul 2023 02:14:16 +0000</pubDate>
				<category><![CDATA[Software development]]></category>
		<category><![CDATA[git]]></category>
		<guid isPermaLink="false">https://www.webdevstudy.com/?p=243</guid>

					<description><![CDATA[I want to upload one of my projects to a new repository, but I don&#8217;t want to upload the log records to the new repository, that is, the new repository records from scratch, the old one or keep the original, and the log of subsequent changes can be the same. Delete the .git directory for [&#8230;]]]></description>
		
					<wfw:commentRss>https://www.webdevstudy.com/2023/07/04/how-git-uploads-local-old-projects-to-the-new-repository-but-does-not-upload-log-records/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to Extract String Between Parentheses in Java</title>
		<link>https://www.webdevstudy.com/2023/06/23/how-to-extract-string-between-parentheses-in-java/</link>
					<comments>https://www.webdevstudy.com/2023/06/23/how-to-extract-string-between-parentheses-in-java/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Fri, 23 Jun 2023 05:45:06 +0000</pubDate>
				<category><![CDATA[Software development]]></category>
		<category><![CDATA[JAVA]]></category>
		<guid isPermaLink="false">https://www.webdevstudy.com/?p=162</guid>

					<description><![CDATA[Let’s see how extract a string between parentheses in Java with and without regular expressions. 1. Using&#160;String::matches The&#160;String.matches()&#160;method can be used to check if a string matches a regular expression. 2. Using&#160;Matcher::find The&#160;Matcher.find()&#160;method can be used to find a substring that matches a regular expression. 3. Using&#160;String::split The&#160;String.split()&#160;method can be used to split a string [&#8230;]]]></description>
		
					<wfw:commentRss>https://www.webdevstudy.com/2023/06/23/how-to-extract-string-between-parentheses-in-java/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>The biggest risk of new technologies</title>
		<link>https://www.webdevstudy.com/2023/04/14/the-biggest-risk-of-new-technologies/</link>
					<comments>https://www.webdevstudy.com/2023/04/14/the-biggest-risk-of-new-technologies/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Fri, 14 Apr 2023 04:30:19 +0000</pubDate>
				<category><![CDATA[Software development]]></category>
		<guid isPermaLink="false">https://www.webdevstudy.com/?p=92</guid>

					<description><![CDATA[In the past few days, I have read three articles, all of which engineers regret using new technologies. The first article &#8220;Why We Abandoned the Elm Language&#8221;  The second article, GraphQL: From Excitement to Deception. Part 3, &#8220;Why I Regret Using Iionic&#8221;. The above three new technologies have all been born in the past 10 [&#8230;]]]></description>
		
					<wfw:commentRss>https://www.webdevstudy.com/2023/04/14/the-biggest-risk-of-new-technologies/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
