How do you add an ActionListener onto a JButton in Java

Two ways: 1. Implement ActionListener in your class, then use jBtnSelection.addActionListener(this); Later, you’ll have to define a menthod, public void actionPerformed(ActionEvent e). However, doing this for multiple buttons can be confusing, because the actionPerformed method will have to check the source of each event (e.getSource()) to see which button it came from. 2. Use anonymous inner classes: Later, you’ll have to define selectionButtonPressed(). … Read more

The C# Shorthand getters and setters

They don’t allow you to specify encapsulating behavior. What they do is allow you to specify that this is a Property in the public interface of your class, as opposed to a field. The difference here is that in Java, getters and setters are simply methods that follow a certain convention (getXXX, setXXX). In C#, … Read more

Difference between String replace() and replaceAll()

In java.lang.String, the replace method either takes a pair of char’s or a pair of CharSequence‘s (of which String is a subclass, so it’ll happily take a pair of String’s). The replace method will replace all occurrences of a char or CharSequence. On the other hand, the first String arguments of replaceFirst and replaceAll are regular expressions (regex). Using the wrong function can lead to subtle bugs.

.class vs .java

A .class file is a compiled .java file. .java is all text and is human readable..class is binary (usually). You compile a java file into a class file by going to the command line, navigating to the .java file, and running You must have a java SDK installed on your computer (get it from Oracle), and … Read more

Hata!: SQLSTATE[HY000] [1045] Access denied for user 'divattrend_liink'@'localhost' (using password: YES)