- Upvotes Received
- 0
- Posts with Upvotes
- 0
- Upvoting Members
- 0
- Downvotes Received
- 2
- Posts with Downvotes
- 1
- Downvoting Members
- 2
6 Posted Topics
Re: [code=html]<td width="155" bgcolor="#999999"> <span class="style3"> <strong>EMPID</strong> </span> </td>[/code] u put that above lines for required place for your convenient. | |
send the basic procedure for, how to generate textreport at servlet and also having reference material for generate text report send me. | |
Re: > hi .. > i wanna read text file in binary format ... > 4 ex : lele and raz ..."in text file " l=10011001 e= 011110011 ..... "cmd (8 bit per letter)" > and but them in an array ...i tried the type StringBuilder but it didnt work ... … | |
Re: > My code is : /* Database.java*/ import java.sql.*; import java.awt.*; import javax.swing.*; public class Database{ private static Connection con = null; public static Statement statement = null; public static void makeConnection() { JOptionPane.showMessageDialog(null, "database"); String driver = "sun.jdbc.odbc.JdbcOdbcDriver"; String url = "jdbc:odbc:lib"; String username = ""; String password = … | |
Re: > This is the code i have for my stack program: public class MyStack { private int top; private int[] store; void Stack(int capacity) { if (capacity <= 0) throw new IllegalArgumentException("Stack's capacity must be positive"); store = new int[capacity]; top = -1; } void push(int value) { if (top … | |
below coding is used for print date currennt date and time from your pc [code=Java]import java.text.SimpleDateFormat; import java.util.Date; public class dateformate { public static void main (String args[]) { Date date = new Date(); System.out.println("today date "+date); } }[/code] |
The End.