|
|||||||
|
|
|
![]() |
|
|
Strumenti |
|
|
#1 |
|
Member
Iscritto dal: May 2009
Messaggi: 70
|
[JAVA]Creare una pagina html
Ragazzi qualcuno sa come si fa a creare una pagina html da codice java? Che classi utilizzo?? C'è qualche tutorial in circolazione??
Grazie mille in anticipo |
|
|
|
|
|
#2 | |
|
Senior Member
Iscritto dal: Oct 2007
Città: Padova
Messaggi: 4131
|
Quote:
Perchè per "...creare una pagina html da codice java" si può anche intendere banalmente la produzione di un file di testo in formato html.
__________________
As long as you are basically literate in programming, you should be able to express any logical relationship you understand. If you don’t understand a logical relationship, you can use the attempt to program it as a means to learn about it. (Chris Crawford) |
|
|
|
|
|
|
#3 |
|
Member
Iscritto dal: May 2009
Messaggi: 70
|
devo creare delle label contenenti i risultati di un motore di ricerca ottenuti usando gwt....
|
|
|
|
|
|
#4 |
|
Member
Iscritto dal: Jan 2008
Città: Roma
Messaggi: 86
|
puoi usare le librerie sax (qua) che ti permettono di manipolare (creare, editare...) documenti XML sfruttando il DOM.
Quindi banalmente metodi come addElement et similia. Dovrebbe fare al caso tuo.
__________________
Parco giochi per bambini a Roma |
|
|
|
|
|
#5 | |
|
Member
Iscritto dal: May 2009
Messaggi: 70
|
Quote:
Spero di essere stato chiaro altrimenti vi posto questo codice: Codice:
public class SimpleSearch implements EntryPoint {
int currentRow;
FlexTable resultsTable;
public void onModuleLoad() {
Flextable resultsTable = new FlexTable();
SearchControlOptions options = new SearchControlOptions();
WebSearch webSearch = new WebSearch();
options.add(webSearch);
final SearchControl control = new SearchControl(options);
control.addSearchResultsHandler(new SearchResultsHandler() {
public void onSearchResults(SearchResultsEvent event) {
JsArray<? extends Result> results = event.getResults();
for (int i = 0; i < results.length(); i++) {
if (results.get(i).getResultClass().equals(
ResultClass.WEB_SEARCH_RESULT)) {
currentRow++;
WebResult result = (WebResult) results.get(i);
resultsTable.setText(currentRow, 0, "" + currentRow);
resultsTable.setHTML(currentRow, 1, "<a href=\"" + result.getUrl()
+ "\">" + result.getTitle() + "</a>");
}
}
}
});
Scusatemi se insisto...ma non riesco ad uscirne..
|
|
|
|
|
|
|
#6 |
|
Senior Member
Iscritto dal: Oct 2007
Città: Padova
Messaggi: 4131
|
Non so cosa sia una FlexTable, e tutto il resto, perchè non ho mai usato gwt ma se stai usando Swing come libreria per la GUI del client alcuni componenti offrono un limitato supporto per l'html (principalmente per la formattazione).
C'è poi JEditorPane che supporta i link html tramite il solito meccanismo sorgente-evento-ascoltatore. Alcuni link che potrebbero esserti utili: 1. How to Use HTML in Swing Components 2. Making clickable links using HTML in a JLabel 3. Have a Label acting as HTML HREF (URLLabel)
__________________
As long as you are basically literate in programming, you should be able to express any logical relationship you understand. If you don’t understand a logical relationship, you can use the attempt to program it as a means to learn about it. (Chris Crawford) |
|
|
|
|
| Strumenti | |
|
|
Tutti gli orari sono GMT +1. Ora sono le: 16:23.




















