Wednesday, August 20, 2014

AngularJS bind example

There is a bind example in AngularJS.

The app.js creates an default module.
The index.html references the angular.min.js and the app.js.
On line 6 we reference the app created on app.js with ng-app.
On line 8 we create a input that reference the "checked" var with ng-model.
On line 11 we create a input that reference the "checked" var with ng-model and uses a angular filter uppercase.


How to rename a file in Java

An example on how to rename a file in java

Tuesday, August 19, 2014

Read a text file in Java

Example on how to read a text file in Java with BufferedInputStream and DataInputStream


How to create a File in Java

Example on how to create a File in Java:

JDBC Statement Example – Insert A Record