Skip to content
Java mix blog

JavaMix

Java • AI • Architecture • Cloud

  • About
  • My Github
Java mix blog
JavaMix
Java • AI • Architecture • Cloud
  • Date and Time API | Java 8

    Java8 / java.time API

    ByVijay Katta September 24, 2014

      Date and Time API  new feature in Java8 , mainly these objects are immutable and thread safe , these API contains four packages , java.time.*; java.time.chrono.*; java.time.format.*; java.time.temporal.*; java.time.zone.*; now we will see how to make use of these libraries in our programming usage . here i’m taking a sample class that will print…

    Read More Java8 / java.time APIContinue

  • Java

    Notable features with Java SE 8

    ByVijay Katta March 9, 2014

    Lambda expressions New date and time API List of JSR’s included , JSR 335, JEP 126 : Language-level support for lambda expressions JSR 223, JEP 174 : Project Nashorn, a JavaScript runtime which allows developers to embed JavaScript code within applications JSR 308, JEP 104 : Annotations on Java Types for Unsigned Integer Arithmetic JSR…

    Read More Notable features with Java SE 8Continue

  • Basics | J2EE | J2se | Java

    Difference between java jar and war

    ByVijay Katta January 17, 2014

    Both JAR and WAR are created(Zipped) with Java JAR tool , both have different purposes. JAR  – Java Archive this JAR file may be a standalone java application or a zipped source . this file contains classes , libraries , property files Command to create a JAR file : here i want to create JAR…

    Read More Difference between java jar and warContinue

  • Ant tool | J2EE | Java

    Junit EE – Quick over view

    ByVijay Katta December 11, 2012

        JUNIT EE Observation JUnitEE is free software for unit testing in a J2EE environment and useful for manual testing / manually run test cases inside your application server. JUnit provides the framework for writing your unit tests, and JUnitEE gives you the possibility to run these tests inside your application server. This has…

    Read More Junit EE – Quick over viewContinue

  • Google web tool kit (GWT)

    Google web tool kit

    ByVijay Katta March 21, 2012

    Nothing more to write about GWT  , there is no big resource than these To Know about GWT : Read wiki  http://en.wikipedia.org/wiki/Google_Web_Toolkit Official site for GWT ( to learn , read docs ,examples and downloads) http://code.google.com/webtoolkit/ official discussion forum  : https://groups.google.com/group/google-web-toolkit So ,  why I’m here  ! Here also you can learn how to use…

    Read More Google web tool kitContinue

  • File reading

    Reading line by line data from a text file using Java

    ByVijay Katta March 14, 2012

    Here in this post given an example to how to read the data from the text file line by line . this is a simple program to read the data and print . package net.javamix.string.samples; import java.io.BufferedReader; import java.io.DataInputStream; import java.io.FileInputStream; import java.io.InputStreamReader; public class StringFormatter { public static void main(String args[]) { try{ //…

    Read More Reading line by line data from a text file using JavaContinue

  • J2se | j2se 5.0 | Java | programs | Versions

    Java : for each loop

    ByVijay Katta March 2, 2012

    For each loop  was introduced in java 1.5.0 basically it extends for loop in java . it referred as a enhanced for loop / for each statement / for each loop . Syntax : for (type var : arr) { // do something with var } example : package net.javamix.string.samples; public class ForEach {   …

    Read More Java : for each loopContinue

  • programs | System program's | Threads

    Pausing thread for a time in java

    ByVijay Katta January 8, 2012

      package net.javamix.blog.basics.thread; public class ThreadRunning { public static void main(String[] args) { System.out.println(“Printing started !!”); try { while (true) { System.out.println(“Javamix.net”); //pausing thread for 60 seconds Thread.sleep(60000); } } catch (InterruptedException e) { System.out.println(“thread inturpted”); e.printStackTrace(); } } }

    Read More Pausing thread for a time in javaContinue

  • Basics | Eclipse | IDE's

    How to delete a workspace in Eclipse

    ByVijay Katta January 6, 2012

    There are a few procedures are there to delete workspace from eclipse, even after deleting the workspace manually from folder still  it shows the workspace listing in the eclipse . after deleting the workspace folder from the directory  we have to remove the listing from the eclipse ! it’s simple .. please follow the below…

    Read More How to delete a workspace in EclipseContinue

  • Apache POI | API | White Paper

    Apache POI api with JAVA

    ByVijay Katta December 2, 2011

        What is Apache POI? Apache POI’s cross-platform Open Source Java APIs allow users to read and write various file formats from the Microsoft Office suite of applications, including Word, PowerPoint, Excel, Outlook, Visio, and Publisher. Apache POI is deployed in many highly-visible environments including CERN, Deutsche Bank, Freddie Mac, IBM, J.P. Morgan, Lawrence…

    Read More Apache POI api with JAVAContinue

Page navigation

Previous PagePrevious 1 2 3 4 5 Next PageNext

© 2026 JavaMix

  • About
  • My Github