I want to show you how to get the value of the variable from php to java using JSON. JSON (JavaScript Object Notation) is a lightweight data-interchange format. It is easy for humans to read and write. It is easy for machines to parse and generate(wikipedia). First, you build your database and create a table. …
Category Archive: java basic
Feb 23
Encapsulation
package exercise4; public class Telepon { private int durasi, tarif; private String kodeAsal, kodeTujuan, nomorAsal, nomorTujuan; public int ongkos() { if (kodeAsal.equals(kodeTujuan)) { tarif = 100; } else { tarif = 200; } return tarif * durasi; } public int getDurasi() { return durasi; } public void setDurasi(int durasi) { this.durasi = durasi; } public …
Recent Comments