(Jeff Friesen) Java interfaces are different from classes, and it’s important to know how to use their special properties in your programs. This article introduces the difference between classes and interfaces, then guides you through short examples demonstrating how to declare, implement, and exten
Tag: JSON / JAVA / XML
Cinchoo ETL – Convert XML to CSV File
ChoETL is an open source ETL (extract, transform and load) framework for .NET. It is a code based library for extracting data from multiple sources, transforming, and loading into your very own data warehouse in .NET environment. You can have data in your data warehouse in no time.
SQL Server 2016 – Bulk Import JSON File Data To Table
(Priyaranjan K S) SQL Server 2016 has introduced support for JSON data. As of now, there are no JSON-specific data types, SQL Server 2016 continues to use NVARCHAR type to store JSON data. However, it does provide several important T-SQL methods and commands to work with JSON.
How to Fetch Oracle 12c Implicit Cursors with JDBC and jOOQ
(lukaseder) Earlier this week, I’ve blogged about how to execute SQL batches with JDBC and jOOQ. This was useful for the MySQL, SQL Server, and Sybase users among you.
Creating Advanced Tabbed Notepad In Java
(Pritam Zope) In this article, we will create a notepad in Java with features like Multi Tabbed Documents, Document Selector, Openning/Saving/Closing Multiple documents, Running External Programs,Different Look and Feels, Viewing files in Browser, etc.
How Java’s Built-In Garbage Collection Will Make Your Life Better (Most of the Time)
(Kirk Pepperdine) “No provision need be made for the user to program the return of registers to the free-storage list.”
How To Create JSON In C#
(Manoj Kalla) In this article, you will get the following questions answered.
Unique Array Values
(David Walsh) When you look at any programming language, you see missing features that you find puzzling because the use case seems so common. One such case is retrieving unique values from an array with JavaScript.
How to broadcast a web-cam to YouTube using HTML5 and WebRTC
(Amayabay) In this article we explain how YouTube Live broadcasts work, and show how anyone with just basic JavaScript knowledge can come up with a YouTube Live broadcast from an HTML page using the WebRTC technology.
Java 8 Lambda Limitations: Closures
(Miro Mannino) Java doesn’t rely on closures the way functional programming languages and JavaScript do, but they’re a loose thread in the implementation of lambda expressions.