<?xml version="1.0" encoding="ISO-8859-1"?>
<?xml-stylesheet type="text/css" href="../../common/rss.css" ?>
<rss version="2.0">
<channel>
<title>Bucaro TecHelp : Programming : Java</title>
<link>http://bucarotechelp.com/program/java</link>
<description>
This section contains information about Java programming.
</description>
<language>en-us</language>
<pubDate>Thu, 16 Sep 2021 07:29:52 GMT</pubDate>
<docs>http://www.rssboard.org/rss-specification</docs>
<item>
<title>Seven Java Tips for New Developers</title>
<link>http://bucarotechelp.com/program/java/77031401.asp</link>
<description>
If you're just getting started with Java programming, here are seven basics you need to know.
</description>
<pubDate>Thu, 16 Sep 2021 07:29:52 GMT</pubDate>
</item>
<item>
<title>New Features In Java 9</title>
<link>http://bucarotechelp.com/program/java/80091602.asp</link>
<description>
The latest version of Java has with over 150 new features, several new features and APIs to accelerate development of applications for both large and small devices. At the same time, the features provided by Java 9 help programmers to improve application's performance, security, and maintainability.
</description>
<pubDate>Thu, 15 Mar 2018 13:47:02 GMT</pubDate>
</item>
<item>
<title>Java do-while Loop</title>
<link>http://bucarotechelp.com/program/java/80092002.asp</link>
<description>
A loop is a block of statements that are repeated. There are three main loop control structures available in Java: for, do and while. This article provides example of while loop code.
</description>
<pubDate>Sun, 11 Mar 2018 09:29:55 GMT</pubDate>
</item>
<item>
<title>Difference Between JSF, Servlet and JSP</title>
<link>http://bucarotechelp.com/program/java/80092102.asp</link>
<description>
This article provides a brief Overview of JavaServer Faces (JSF), Java ServerPages (JSP), and Java Servlet.
</description>
<pubDate>Sat, 10 Mar 2018 10:32:35 GMT</pubDate>
</item>
<item>
<title>Java while Loop</title>
<link>http://bucarotechelp.com/program/java/80092701.asp</link>
<description>
A loop is a block of statements that are repeated. There are three main loop control structures available in Java: for, do and while. This article provides example of while loop code.
</description>
<pubDate>Sun, 04 Mar 2018 09:37:48 GMT</pubDate>
</item>
<item>
<title>Java for Loop</title>
<link>http://bucarotechelp.com/program/java/80092901.asp</link>
<description>
A loop is a block of statements that are repeated. A loop may be repeated a fixed number of times, repeat until some condition is met, or can loop indefinitely while the program is running. There are three main loop control structures available in Java: for, do and while.
</description>
<pubDate>Fri, 02 Mar 2018 08:32:23 GMT</pubDate>
</item>
<item>
<title>Java Ternary Operator Control Statement</title>
<link>http://bucarotechelp.com/program/java/80102001.asp</link>
<description>
The ternary operator (?) is often confusing to beginners. The ternary operator is used to assign one of two values to a variable based on a conditional test.
</description>
<pubDate>Thu, 08 Feb 2018 07:50:54 GMT</pubDate>
</item>
<item>
<title>Java switch case Control Statement</title>
<link>http://bucarotechelp.com/program/java/80102101.asp</link>
<description>
The if else statement tells the computer to run one set of instructions based on one result of a test, and a different set of instructions based on a different result of the test. But a switch case statement can run a different set of instructions based on any value or expression provided to the switch command.
</description>
<pubDate>Wed, 07 Feb 2018 10:55:16 GMT</pubDate>
</item>
<item>
<title>Java if else if else Control Statement</title>
<link>http://bucarotechelp.com/program/java/80102301.asp</link>
<description>
Some instructions tell the computer to test a variable and to follow a group of instructions based on the result of that test. The nice thing about an if else if else statement is that you can use as many else if sections as you require. You could have an else if section for every possible condition value.
</description>
<pubDate>Mon, 05 Feb 2018 09:28:31 GMT</pubDate>
</item>
<item>
<title>Java if else Control Statement</title>
<link>http://bucarotechelp.com/program/java/80102401.asp</link>
<description>
A computer program is a list of instructions for the computer to follow. The if else statement tells the computer to run on set of instructions based on one result of a test, and a different set of instructions on a different result of the test.
</description>
<pubDate>Sun, 04 Feb 2018 08:20:07 GMT</pubDate>
</item>
<item>
<title>Java if Comparison Statement</title>
<link>http://bucarotechelp.com/program/java/80102501.asp</link>
<description>
A computer program is a list of instructions for the computer to follow. Some instructions tell the computer to test a variable and to follow a group of instructions based on the result of that test. The most basic conditional test is the <i>if</i> statement.
</description>
<pubDate>Sat, 03 Feb 2018 09:00:46 GMT</pubDate>
</item>
<item>
<title>Locate Text Within Text in a Java Program</title>
<link>http://bucarotechelp.com/program/java/80110301.asp</link>
<description>
In Java a letter or digit is called a character and a collection of letters or digits that make a phrase, sentence, or paragraph, is called a string. Java uses the String object's .indexOf method to locate one string within another.
</description>
<pubDate>Sun, 28 Jan 2018 09:13:15 GMT</pubDate>
</item>
<item>
<title>Change the Case of Text in a Java Program</title>
<link>http://bucarotechelp.com/program/java/80110401.asp</link>
<description>
If you compare two characters or two strings, Java will say they are different if all the characters are not the same case. To make a comparison without consideration for case, you can first convert all the characters in a string to lower case using the String objects toLowerCase toUpperCase method.
</description>
<pubDate>Sat, 27 Jan 2018 09:44:15 GMT</pubDate>
</item>
<item>
<title>Determine the Length of a Text String in a Java Program</title>
<link>http://bucarotechelp.com/program/java/80110701.asp</link>
<description>
Java uses the .length method to return the length, in characters, of the text contained in a String object. In this article is the Java code to determine the length of a text string.
</description>
<pubDate>Wed, 24 Jan 2018 09:13:37 GMT</pubDate>
</item>
<item>
<title>Comparing Two Text Strings in a Java Program</title>
<link>http://bucarotechelp.com/program/java/80112101.asp</link>
<description>
One task performed frequently in a Java program is to compare two strings. To accomplish this you would use the String object's equals() method. This article provides Java code to compare the text in two strings.
</description>
<pubDate>Wed, 10 Jan 2018 09:38:44 GMT</pubDate>
</item>
<item>
<title>Display Variable's value in Text in a Java Program</title>
<link>http://bucarotechelp.com/program/java/80112701.asp</link>
<description>
Java uses the concatenate operator (+) to paste two or more strings together. However, you can also use the concatenate operator to display the value of a variable with a String. Java will automatically convert the integer values to Strings for display.
</description>
<pubDate>Thu, 04 Jan 2018 08:57:12 GMT</pubDate>
</item>
<item>
<title>Concatenate Strings in a Java Program</title>
<link>http://bucarotechelp.com/program/java/80112801.asp</link>
<description>
Java uses the concatenate (+) operator to paste two or more strings together. This article provides Java code to concatenate the strings "first text " and "second text".
</description>
<pubDate>Wed, 03 Jan 2018 09:57:10 GMT</pubDate>
</item>
<item>
<title>Display Quotation Mark in Text in a Java Program</title>
<link>http://bucarotechelp.com/program/java/81000301.asp</link>
<description>
To define a String in Java, you enclosed it within quotation marks. These quotation marks are not shown when you display the string.
</description>
<pubDate>Thu, 28 Dec 2017 10:50:45 GMT</pubDate>
</item>
<item>
<title>Display a Line Break in Text in a Java Program</title>
<link>http://bucarotechelp.com/program/java/81000401.asp</link>
<description>
In computer programming, a collection of letters that make a phrase, sentence, or paragraph, is called a string. Within a string there may be special characters that are used to produce things like tabs, backspaces, and carriage returns. A line break is created using the newline special character.
</description>
<pubDate>Wed, 27 Dec 2017 10:11:04 GMT</pubDate>
</item>
<item>
<title>Display a Backslash in Text in a Java Program</title>
<link>http://bucarotechelp.com/program/java/81000601.asp</link>
<description>
Within a string there may be special characters that are used to produce things like new lines, tabs, backspaces, and carriage returns. A special character is prefixed by a backslash.
</description>
<pubDate>Mon, 25 Dec 2017 09:12:45 GMT</pubDate>
</item>
<item>
<title>Display Text in a Java Program</title>
<link>http://bucarotechelp.com/program/java/81000701.asp</link>
<description>
In computer programming, a letter or digit is called a character and a collection of letters or digits that make a phrase, sentence, or paragraph, is called a string. Example code to display a string in java is provided in this article.
</description>
<pubDate>Sun, 24 Dec 2017 10:43:17 GMT</pubDate>
</item>
<item>
<title>Java Operators</title>
<link>http://bucarotechelp.com/program/java/81010701.asp</link>
<description>
Operators are special characters used to manipulate operands. This artice explains arithmetic, relational, bitwise, logical, and assignment Operators, as well the conditional Operator and instanceof Operator.
</description>
<pubDate>Thu, 23 Nov 2017 15:14:25 GMT</pubDate>
</item>
<item>
<title>Java Byte, Short, Long, and Double Variable Types</title>
<link>http://bucarotechelp.com/program/java/81041101.asp</link>
<description>
In Java, as in other programming languages, information that can be changed as the program runs is stored in variables. A primitive variable type is predefined by the language and is named by a reserved keyword. There are eight primitive data types supported by the Java programming language.
</description>
<pubDate>
Sun, 20 Aug 2017 15:05:00 GMT
</pubDate>
</item>
<item>
<title>How to Use Boolean Expressions in Java</title>
<link>http://bucarotechelp.com/program/java/81041702.asp</link>
<description>
A Java boolean can have one of two values: true or false. In some languages, such as C or C++, integer values can be treated as a boolean, with 0 equal to false and any other value equal to true. Not so in Java. In Java, you can't convert between an integer type and a boolean type.
</description>
<pubDate>
Mon, 14 Aug 2017 15:28:52 GMT
</pubDate>
</item>
<item>
<title>Basic Java Variables</title>
<link>http://bucarotechelp.com/program/java/81041802.asp</link>
<description>
In Java information that can be changed as the program runs is stored in variables. A variable is created with a statement that has the type and the name of the variable, and sometimes the value of the information being stored.
</description>
<pubDate>
Sun, 13 Aug 2017 20:35:09 GMT
</pubDate>
</item>
<item>
<title>Java Keywords</title>
<link>http://bucarotechelp.com/program/java/81050302.asp</link>
<description>
The Java programming language has 50 keywords. Each keyword has a specific meaning in the language. You can't use a keyword for anything other than its pre-assigned meaning. The following table lists Java's keywords.
</description>
<pubDate>
Fri, 28 Jul 2017 16:35:49 GMT
</pubDate>
</item>
<item>
<title>How to Create the Most Basic Java Window</title>
<link>http://bucarotechelp.com/program/java/81082002.asp</link>
<description>
A lot of Java programming involves creating command line applications. But I like to get to opening a graphic window as quickly as possible. This is no problem because it's actually very easy to create a basic JFrame window.
</description>
<pubDate>
Mon, 10 Apr 2017 20:05:27 GMT
</pubDate>
</item>
<item>
<title>Passing Arguments to a Java Application</title>
<link>http://bucarotechelp.com/program/java/81082202.asp</link>
<description>
In this article I use a very short example program to demonstrate several basic principles of Java programming; how to pass arguments to a Java application, how to convert a string to an int, and how to use an if structure.
</description>
<pubDate>
Sat, 08 Apr 2017 16:07:13 GMT
</pubDate>
</item>
<item>
<title>How to Install JDK 8 on Windows and Get Started with Java Programming</title>
<link>http://bucarotechelp.com/program/java/81082602.asp</link>
<description>
Java is one of the most popular programming languages in use, particularly for client-server web applications, with nine million developers, and more than three billion mobile phones run Java. All you need to learn to program Java is the free JDK (Java Development Kit).
</description>
<pubDate>
Tue, 04 Apr 2017 16:17:28 GMT
</pubDate>
</item>
<item>
<title>Introduction to Java - A Brief Overview</title>
<link>http://bucarotechelp.com/program/java/81082601.asp</link>
<description>
Java is a broadly useful programming language with various components that make the language appropriate for use on the World Wide Web. There are more than nine million Java programmers and more than three billion cellphones run it.
</description>
<pubDate>
Tue, 04 Apr 2017 13:34:02 GMT
</pubDate>
</item>
<item>
<title>A Comparison Between The Java IDEs: Netbeans and Eclipse</title>
<link>http://bucarotechelp.com/program/java/81082701.asp</link>
<description>
Both NetBeans and Eclipse are open source and cross platform Java IDEs. Eclipse is supported by IBM, whereas NetBeans is supported by Oracle. Each IDE provides several innovative features and tools to simplify and speedup Java application development.
</description>
<pubDate>
Mon, 03 Apr 2017 17:19:54 GMT
</pubDate>
</item>
<item>
<title>The Sun One Studio Java IDE</title>
<link>http://bucarotechelp.com/program/java/97042200.asp</link>
<description>
You can develop Java applications by typing code into Windows Notepad and executing them from a DOS prompt. But sooner or later you will want to become a more productive  programmer, and that requires use of an Integrated Development Environment (IDE).
</description>
<pubDate>
Mon, 22 Aug 2016 19:19:42 GMT
</pubDate>
</item>
<item>
<title>Reading Files with Java</title>
<link>http://bucarotechelp.com/program/java/98002500.asp</link>
<description>
Without the ability to read files, your application would be severely limited. In this article I show you; how to use the JfileChooser dialog box to select a file, how to display the contents of the file in your applications window, and how to scroll the Window.
</description>
<pubDate>
Mon, 22 Aug 2016 19:19:42 GMT
</pubDate>
</item>
<item>
<title>Getting Started as a Java Programmer</title>
<link>http://bucarotechelp.com/program/java/98011320.asp</link>
<description>
One of the reasons for Java's rapid growth is that Sun Microsystems has always makes the Java Software Development Kit (SDK) available at its Web site for free. All you need  to develop Java programs is the SDK and a basic ASCII text editor like Windows Notepad.
</description>
<pubDate>
Mon, 22 Aug 2016 19:19:42 GMT
</pubDate>
</item> 
<item>
<title>Your First Java Menu</title>
<link>http://bucarotechelp.com/program/java/98011440.asp</link>
<description>
Many times the user of a sotware application performs functions by selecting items from a menu. In this article I give you an overview of the Java event model and how  to create a Java program with a simple menu.
</description>
<pubDate>
Mon, 22 Aug 2016 19:19:42 GMT
</pubDate>
</item>
</channel>
</rss>