Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
8% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
16
Posts with Downvotes
13
Downvoting Members
9
3 Commented Posts
0 Endorsements
~13.6K People Reached
Favorite Tags
Member Avatar for Jessurider

can anyone tell me why this c# console command not running on java?.............. i've made a c# console program as given below [CODE=C#] using System; using System.IO; using System.Collections.Generic; using System.Linq; using System.Text; using System.Drawing; namespace face { class Program { public static void Main(string[] args) { String path = …

Member Avatar for thines01
0
278
Member Avatar for Jessurider

can anyone tell how to bring Bitmap class in java just like we do that in C#................ i've got link regarding the Bitmap class in java... but i does'nt know how to bring that in java [URL="http://jwx.sourceforge.net/api/wx/Bitmap.html"]http://jwx.sourceforge.net/api/wx/Bitmap.html[/URL]

Member Avatar for Jessurider
0
209
Member Avatar for Jessurider

can we find a particular image whether exiting or not within a video file.......... i.e imagine i've a picture of a particular person and a video file....and i've to find whether that person in the picture exits or not somewhere within that video file...........

Member Avatar for Jessurider
0
92
Member Avatar for Jessurider

i've created a project .....in which on executing the h.java the second window3.java appears slowly as you can see that by running the below source code.............but the problem is that the second form i.e window3.java on displaying does'nt shows the noire look and feel environment as well as no noire …

Member Avatar for masijade
0
328
Member Avatar for Jessurider

how to convert [B]\[/B] to [B]/[/B] in strings using java String path="C:\Documents and Settings\user\My Documents\Crypt.avi"; Eventhough [B]path.replaceAll("\","/");[/B] does'nt works!!!!! can anyone tell me how to do this?

Member Avatar for Slimmy
0
69
Member Avatar for Jessurider

can anyone tell me how to make appear a jframe in a slow motion in java i'm using netbeans editor..............

Member Avatar for NormR1
0
410
Member Avatar for Jessurider

how to get only the file name from the given path............ [B]example1:[/B] String str1="C:\New Folder\My Data\kk.png" From the above how can we get only the file [B]kk.png[/B] [B]example2: [/B] String str1="C:\New Folder\My Data\Java\Project\yy.bmp" From the above how can we get only the file [B]yy.bmp[/B]

Member Avatar for JamesCherrill
0
101
Member Avatar for Jessurider
Member Avatar for peter_budo
0
85
Member Avatar for Jessurider

can anyone tell me how to [B][U]setOwner[/U][/B] as well as the [B][U]fileKey[/U][/B] for the particular file........ i've retrieved the metadata information but can't able to set values..... [CODE="java"] import java.io.IOException; import java.nio.file.Files; import java.nio.file.Path; import java.nio.file.Paths; import java.nio.file.attribute.AclFileAttributeView; import java.nio.file.attribute.BasicFileAttributes; import java.nio.file.attribute.UserPrincipal; /** * * @author user */ public class …

Member Avatar for Jessurider
0
240
Member Avatar for Jessurider
Member Avatar for Ezzaral
0
114
Member Avatar for Jessurider

can anyone please tell me how to edit the summary of a file(e.g *.txt,*.docs,*.pdf,*.avi.....etc) through by java programming.

Member Avatar for JamesCherrill
0
342
Member Avatar for Jessurider

can anyone tell me how to extract bmp picture frames from a a video file..... and also the reverse process i.e bmp files back to video files...... when i googled i got several stuffs regarding extraction of image files from video file using c#, is there any method in java.....

Member Avatar for Taywin
0
142
Member Avatar for Jessurider
Member Avatar for harinath_2007
0
78
Member Avatar for Jessurider
Member Avatar for Jessurider

i 've got a steganography project in java.......in that we can hide text within pictures and videos......but the major disadvantage is that the hidden data is been destroyed when the image or the video is further modifies with the hidden data............is it possible to do a steganography project in java …

Member Avatar for Taywin
0
269
Member Avatar for Jessurider
Member Avatar for Netcode
0
40
Member Avatar for Jessurider

for my final year project i'm trying to do an IEEE project which titles as DATA LEAKAGE DETECTION SYSTEM..... Description : Aim of our project to develop Data leakage detection Model in which We study The distributor must assess the likelihood that the leaked data came from one or more …

Member Avatar for JamesCherrill
-1
133
Member Avatar for Jessurider

can anyone tell me how to rotate the inner yellow star within the blue star [CODE=java] import java.applet.Applet; import java.awt.Color; import java.awt.Graphics; import java.awt.Graphics2D; import java.awt.geom.Path2D; public class app extends Applet { final static int OFFSET = 30; final static int OFFSETS = 30; public void paint(Graphics g) { Graphics2D …

Member Avatar for Ezzaral
1
153
Member Avatar for Jessurider

can anyone tell me why the below code for page backward preventing is not working in firefox but works perfectly in google chrome and internet explorer. can anyone tell the apt code that works in all browsers [CODE]<a href="mainpage.html">log out</a> <script language="JavaScript" type="text/javascript"> window.history.forward(1); </script>[/CODE]

Member Avatar for masijade
0
60
Member Avatar for Jessurider

can anyone tell me how to bring jbutton within a jtable.........and how do do the actionperform of the button can i do this in jframe......

Member Avatar for JamesCherrill
0
130
Member Avatar for Jessurider

i've created a database project in java in which a jtable is used to display the contents of the database.......i've also created an option for insertion of values through a textfield by button actionperformed into the database ......and now when i inserts a particular values through the textfield and when …

Member Avatar for murali_quest
0
199
Member Avatar for Jessurider

WHY WHEN I EXECUTE THE BELOW CODE I GETS AN EXCEPTION [B]java.sql.SQLException: No ResultSet was produced[/B].........BUT EVEN THOUGH INSERTION OPERATION WORKS FINE........CAN ANYONE TELL ME WHY THIS EXCEPTION COMES [CODE=java] Connection co; try { Class.forName("sun.jdbc.odbc.JdbcOdbcDriver"); co = DriverManager.getConnection("jdbc:odbc:hh"); Statement st1; ResultSet result; st1 = co.createStatement(); result=st1.executeQuery("select count(*) from rooms"); result.next(); …

Member Avatar for Jessurider
0
2K
Member Avatar for Jessurider

how can i make the border line to the position shown in the attachment [CODE] package proj; import java.awt.BasicStroke; import java.awt.Color; import java.awt.print.PrinterJob; import java.awt.Graphics; import java.awt.Graphics2D; import java.awt.geom.Rectangle2D; import java.awt.print.Book; import java.awt.print.PageFormat; import java.awt.print.Printable; public class j extends javax.swing.JFrame { public int st,i,k1,k2;PrinterJob printJob = PrinterJob.getPrinterJob(); String str[]=new String[20]; …

Member Avatar for NormR1
0
173
Member Avatar for Jessurider

can anyone tell me how here the count of [B]st[/B] is [B]incrementing[/B] like this[B] 2,4,6,8,10 and not like 1,2,3,4,5 [/B] how could i get the count of [B]st[/B] to increment as [B]1,2,3,4,5[/B] [CODE] PrinterJob printJob = PrinterJob.getPrinterJob(); Book book = new Book(); for(int i=0;i<5;i++) { book.append(new IntroPage(), printJob.defaultPage()); } [/CODE] …

Member Avatar for Jessurider
0
278
Member Avatar for Jessurider

i've have developed a project for class students allocation for examination.........the instructions for the project is given in the form itself at the bottom......... i've also added a print option for printing the page that you sees........can anyone tell how to print all the pages...........

Member Avatar for stultuske
0
151
Member Avatar for Jessurider

i've created a jframe with a jpanel with certain things as you can see in the attachment (page1.java) ..............can anyone tell how to print that jpanel(not the whole jframe) and all its contents ........

Member Avatar for NormR1
0
117
Member Avatar for Jessurider

i 've declared a string str, and initialize str with a value as IT s1s2 26, i.e [CODE] String str; str="IT s1s2 26"; [/CODE] normally it prints like this as usual [B]IT s1s2 26[/B] what i want is that :i want the str value to be at the str itself …

Member Avatar for Jessurider
0
101
Member Avatar for Jessurider

[CODE] import java.io.*; import java.util.Arrays; public class r { public static void main(String args[]) { int n; String[] names =new String[30]; InputStreamReader isr=new InputStreamReader(System.in); BufferedReader br=new BufferedReader(isr); try { System.out.print("enter limit:"); n=Integer.parseInt(br.readLine()); for(int i=0;i<n;i++) names[i]=br.readLine(); Arrays.sort(names); System.out.println(Arrays.toString(names)); }catch(IOException e){} } } [/CODE]

Member Avatar for NormR1
0
166
Member Avatar for Jessurider

can anyone tell me why this project(attached) is slow in execution!!!! is there any remedy for this problem...... please anyone tell some tip to make this project to run faster..........

Member Avatar for teo236
0
131
Member Avatar for Jessurider

in visual studio when we make a project in c# with backhand as sql........we can see the sql file and we have to locate it in the corresponding place and specify that location........but in netbeans when we make a project in java and backhand as mysql.....we cannot see where that …

Member Avatar for masijade
0
148