TechieDrill Your World Of Technical Tutorials

Posts Tagged ‘create’

Creating Folders using simple Java

11.22.2009 · Posted in Java

import java.io.*; class FileEx { public static void main(String [] s) throws IOException { // File f = new File(”xyz.txt”); // f.delete(); File f1 = new File(s[0]); f1.mkdir(); File f2 = new File (f1,s[1]); f2.mkdir(); File f3 = new File (f2,s[2]); f3.mkdir(); if(f3.mkdir()) { System.out.println(”Folder Created….”); File ff = new File(f3,”akshatha.txt”); ff.createNewFile(); } else { System.out.println(”folder already exists…”); } ...

Create An Accordion with jQuery

11.04.2009 · Posted in Jquery

To download this youtube video, Click Here Text Content: This video is going to show you  how to create a simple Accordion. This video explains some of the important concepts in jQuery, so watch this video for sure! First, a container element is created using <div id=”container”>    </div> Within this, a Definition List is created. The list is structured so ...