Tagged Questions
0
votes
0answers
29 views
Full HTML with PHP programming language or VB.Net integrate with PHP? [on hold]
I have an idea to develop a real time e-cormmerce application, which includes a customer interface and an admin interface.
Customer Interface: is responsible for user login, viewing gallery, ...
0
votes
1answer
18 views
Java JEditorPane - Trying to edit an html tag value and getting Exception
I have a JEditorPane and I'm trying to edit one fo the html element attributes, basically changing the the src x value in to a custom value
The code I have is:
// Get <img src="..."> tag
...
1
vote
1answer
15 views
JEditorPane html document inline (embedded) image from file
I'm trying to inline (embed) an image in a JEditorPane from a file such as:
<img src="data:image/gif;utf-8,data...">
But I'm struggling with the code.
So far I have (assuming a gif file):
...
0
votes
1answer
15 views
Obtaining elements from javascript pop up window using HtmlUnit
The problem: When I click on an image of a product on a website, a window pops up above the website page and displays the product's description. It also contains a form. I want to know how to get this ...
0
votes
1answer
33 views
regex . (dot) does not catch parenthesis in strings?
I am trying to do a regex on a large string to pull out all html links from the start of the tag to the closing tag. I came up with this expression:
\\<a.*?\\</a\\>
Which does a pretty ...
0
votes
1answer
19 views
How can I get html error description from server when failing to load XML
I'm using Processing.
I have this query for a server:
// temp is a String containing this looong URL
try{
xml = loadXML(temp);
}catch(Exception e){
e.printStackTrace();
}
I ...
0
votes
2answers
47 views
*What* Java “security settings have blocked a local application from running”?
I have a simple test applet that's supposed to draw a little triangle (and works fine using appletviewer Triangle.class from the command line), but when I try to view Triangle.htm in my browser, I get ...
0
votes
2answers
35 views
Converting HTML files into PDF
I am using the following code to generate a PDF file of the HTML Report
String url = new File("Test.html").toURI().toURL().toString();
OutputStream os = new FileOutputStream("Test.pdf");
...
-1
votes
0answers
36 views
how am i remove page info on my script code
How can i remove page info on my script code? i want to print a html page, printer out is ok but i've a problem, i dont want to see that " page 1 of 2 " at top and that " ...
0
votes
0answers
14 views
Applet Not Loaded in HTML
I was trying to paste image from clipboard in my website using applet.I found this website managed to do so. They show the demo here. I downloaded the project from here here, PasteImageApplet.zip. I ...
1
vote
2answers
36 views
Is it possible to substitute pure html and js for JSP?
I'm learning JavaEE now and I kind of feel that JSP can be messy... I hate to mix my Java code with HTML... I want to separate the front end view and Java code as much as possible.
I've ever tried ...
1
vote
2answers
21 views
setDisplayedMnemonicIndex(int idx) for JLabel containing HTML
I am trying to create a JLabel that consists of HTML text in it with a mnemonic. It worked fine. I was able to grab the focus for the component for which the label was set.
But i couldn't see an ...
0
votes
3answers
50 views
How to Convert Enumeration.elements() Output into HTML Table
Good evening, I am trying to display the output of a HashTable inside a HTML <table> instead of using System.out.print. The problem is, I do not know the exact way to do it. I tried several ...
-1
votes
0answers
17 views
How to use nekohtml to added missing labels
I'm using the nekohtml parser to parse my html code. Somtimes I encountered this situation:
<ul><li>hello<li>world</li>
I want it to be parsered as:
<ul>
...
-3
votes
0answers
37 views
Best approach to developing a platform? [on hold]
If I was to build an AirBnb/rightmove website (not competing, but similar features), what programming languages would be the most efficient and effective to use when developing the platform?
Any tips ...