Posts
 
Reputation
Joined
Last Seen
Ranked #4K
Strength to Increase Rep
+2
Strength to Decrease Rep
-0
100% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
1 Commented Post
0 Endorsements
~5K People Reached
Favorite Tags
Member Avatar for BinodSuman

There are many ways to read properties file in java. Here explained two wayS, using 1. ResourceBundle 2. Properties Class How to use this tutorial 1. Create one directory src and put both below files (MyProp.properties and ReadPropFile.java) 2. MyProp.properties name = Binod Kumar Suman roll = 110 city = …

Member Avatar for softswing
0
492
Member Avatar for bokz06

i think i have converted my application to an applet..... it use to read lines from a .txt file i have on my hard drive but now i want it to read a .txt file from a URL: [CODE]import java.awt.*; import java.awt.event.*; import javax.swing.JButton.*; import javax.swing.event.ListSelectionEvent; import java.net.*; import java.io.*; …

Member Avatar for HoRn
0
166
Member Avatar for serkan sendur
Member Avatar for daniel_ahuk

Hi all.. I'am newbie in java programming.. I need help to compare two images in java... Plss help me.. Thx for your appreciates.. ^^

Member Avatar for BinodSuman
0
196
Member Avatar for BinodSuman

I was searching a solution to get height and widht of an image using javascript. I got many but all those solution only worked when image present in browser cache. Finally I got one solution to get image height and width even image does not exist in browser cache. Just …

0
54
Member Avatar for antobx

Hi , I create a xml string using a xmldocument (c# 2.0 ) This is my code (more or less) XmlElement MySearchNode = xmlDoc.CreateElement("MySearch"); xmlDoc.AppendChild(MySearchNode); ... XmlNode node1 = xmlDoc.SelectSingleNode("/MySearch/Objects"); XmlAttribute nameAttrib = xmlDoc.CreateAttribute("result"); nameAttrib.Value = "012"; node1.Attributes.Append(nameAttrib); xmlDoc.outerxml I want to validate the xml string against a XSD : …

Member Avatar for kvprajapati
0
441
Member Avatar for luiso

I´m new in this great xml world and I need to develop an application for perform transformations of xml into pdf format. I have a way to do this using Ibex library, but this is not free and I can´t affort it. Do anybody know how to do it ??? …

Member Avatar for BinodSuman
0
54
Member Avatar for Alexandro

I need to parse a element from a XML file: <a> <b>45</b> <c>67</c> </a> <a> <b>98</b> <c>89</c> </a> So I try to read and put in a html element the first value of b with the next code: [CODE] document.getElementById("apDiv3").innerHTML=xmlDoc.getElementsByTagName("b")[0].data; or document.getElementById("apDiv3").innerHTML=xmlDoc.getElementsByTagName("b")[0].value; [/CODE] and I get a undefined message.Where is …

Member Avatar for Alexandro
0
313