<?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: Santa1701</title>
    <description>The latest articles on DEV Community by Santa1701 (@santa1701).</description>
    <link>https://dev.to/santa1701</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%2F1843767%2F78cc6267-1e36-4b31-b660-6dab7ad1c827.png</url>
      <title>DEV Community: Santa1701</title>
      <link>https://dev.to/santa1701</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/santa1701"/>
    <language>en</language>
    <item>
      <title>Hello world in java</title>
      <dc:creator>Santa1701</dc:creator>
      <pubDate>Fri, 26 Jul 2024 12:56:36 +0000</pubDate>
      <link>https://dev.to/santa1701/hello-world-in-java-32b5</link>
      <guid>https://dev.to/santa1701/hello-world-in-java-32b5</guid>
      <description>&lt;p&gt;&lt;code&gt;public class Main {&lt;br&gt;
  public static void main(String[] args) {&lt;br&gt;
    System.out.println("Hello World");&lt;br&gt;
  }&lt;br&gt;
}&lt;br&gt;
&lt;/code&gt;&lt;br&gt;
&lt;strong&gt;What is Java?&lt;/strong&gt;&lt;br&gt;
Java is a popular programming language, created in 1995.&lt;/p&gt;

&lt;p&gt;It is owned by Oracle, and more than 3 billion devices run Java.&lt;/p&gt;

&lt;p&gt;It is used for:&lt;/p&gt;

&lt;p&gt;1.Mobile applications (specially Android apps)&lt;br&gt;
2.Desktop applications&lt;br&gt;
3.Web applications&lt;br&gt;
4.Web servers and application servers&lt;br&gt;
5.Games&lt;br&gt;
6.Database connection&lt;br&gt;
&lt;strong&gt;Why Use Java?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;1.Java works on different platforms (Windows, Mac, Linux, Raspberry Pi, etc.)&lt;br&gt;
2.It is one of the most popular programming languages in the world&lt;br&gt;
3.It has a large demand in the current job market&lt;br&gt;
4.It is easy to learn and simple to use&lt;br&gt;
5.It is open-source and free&lt;br&gt;
6.It is secure, fast and powerful&lt;br&gt;
7.It has huge community support (tens of millions of developers)&lt;br&gt;
8.Java is an object oriented language which gives a clear structure to programs and allows code to be reused, lowering development costs&lt;br&gt;
9.As Java is close to C++ and C#, it makes it easy for programmers to switch to Java or vice versa&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>beginners</category>
      <category>java</category>
      <category>programming</category>
    </item>
    <item>
      <title>java</title>
      <dc:creator>Santa1701</dc:creator>
      <pubDate>Fri, 26 Jul 2024 12:39:50 +0000</pubDate>
      <link>https://dev.to/santa1701/java-4fbd</link>
      <guid>https://dev.to/santa1701/java-4fbd</guid>
      <description>&lt;p&gt;&lt;strong&gt;What is Java?&lt;/strong&gt;&lt;br&gt;
Java is a programming language and a platform. Java is a high level, robust, object-oriented and secure programming language.&lt;/p&gt;

&lt;p&gt;Java was developed by Sun Microsystems (which is now the subsidiary of Oracle) in the year 1995. James Gosling is known as the father of Java. Before Java, its name was Oak. Since Oak was already a registered company, so James Gosling and his team changed the name from Oak to Java.&lt;/p&gt;

&lt;p&gt;Platform: Any hardware or software environment in which a program runs, is known as a platform. Since Java has a runtime environment (JRE) and API, it is called a platform.&lt;br&gt;
&lt;strong&gt;Application&lt;/strong&gt;&lt;br&gt;
According to Sun, 3 billion devices run Java. There are many devices where Java is currently used. Some of them are as follows:&lt;/p&gt;

&lt;p&gt;1.Desktop Applications such as acrobat reader, media player, antivirus, etc.&lt;br&gt;
2.Web Applications such as irctc.co.in, javatpoint.com, etc.&lt;br&gt;
3.Enterprise Applications such as banking applications.&lt;br&gt;
4.Mobile&lt;br&gt;
5.Embedded System&lt;br&gt;
6.Smart Card&lt;br&gt;
7.Robotics&lt;br&gt;
8.Games, etc.&lt;br&gt;
&lt;strong&gt;Types of Java Applications&lt;/strong&gt;&lt;br&gt;
There are mainly 4 types of applications that can be created using Java programming:&lt;br&gt;
1)&lt;strong&gt;Standalone Application&lt;/strong&gt;&lt;br&gt;
Standalone applications are also known as desktop applications or window-based applications. These are traditional software that we need to install on every machine. Examples of standalone application are Media player, antivirus, etc. AWT and Swing are used in Java for creating standalone applications.&lt;br&gt;
2)&lt;strong&gt;Web Application&lt;/strong&gt;&lt;br&gt;
An application that runs on the server side and creates a dynamic page is called a web application. Currently, Servlet, JSP, Struts, Spring, Hibernate, JSF, etc. technologies are used for creating web applications in Java.&lt;br&gt;
3)&lt;strong&gt;Enterprise Application&lt;/strong&gt;&lt;br&gt;
An application that is distributed in nature, such as banking applications, etc. is called an enterprise application. It has advantages like high-level security, load balancing, and clustering. In Java, EJB is used for creating enterprise applications.&lt;br&gt;
4)&lt;strong&gt;Mobile Application&lt;/strong&gt;&lt;br&gt;
An application which is created for mobile devices is called a mobile application. Currently, Android and Java ME are used for creating mobile applications.&lt;br&gt;
&lt;strong&gt;Java Platforms / Editions&lt;/strong&gt;&lt;br&gt;
There are 4 platforms or editions of Java:&lt;br&gt;
1)Java SE (Java Standard Edition)&lt;br&gt;
It is a Java programming platform. It includes Java programming APIs such as java.lang, java.io, java.net, java.util, java.sql, java.math etc. It includes core topics like OOPs, String, Regex, Exception, Inner classes, Multithreading, I/O Stream, Networking, AWT, Swing, Reflection, Collection, etc.&lt;br&gt;
2)Java EE (Java Enterprise Edition)&lt;br&gt;
It is an enterprise platform that is mainly used to develop web and enterprise applications. It is built on top of the Java SE platform. It includes topics like Servlet, JSP, Web Services, EJB, JPA, etc.&lt;br&gt;
3)Java ME (Java Micro Edition)&lt;br&gt;
It is a micro platform that is dedicated to mobile applications.&lt;br&gt;
4)JavaFX&lt;br&gt;
It is used to develop rich internet applications. It uses a lightweight user interface API.&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>java</category>
      <category>beginners</category>
      <category>programming</category>
    </item>
  </channel>
</rss>
