Connaissances Informatiques >> programmation >> Programmation Java >> Content
  Derniers articles
  • Définition de la méthode et variab…
  • Comment combiner Dispositions sur l'…
  • Quel est l'héritage multiple en Jav…
  • Comment exécuter un fichier EDI dan…
  • Redimensionner Méthode des applets …
  • Comment faire pour dépanner un Appl…
  • Java traitement des couleurs Gradien…
  • Comment exécuter Eclipse dans le JD…
  • Comment configurer Ant avec Eclipse …
  • Comment puis-je écrire Java qui sé…
  •   Programmation Java
  • C /C + + Programming

  • Computer Programming Languages

  • Delphi Programming

  • Programmation Java

  • Programmation JavaScript

  • PHP /MySQL Programmation

  • programmation Perl

  • Programmation Python

  • Ruby Programming

  • Visual Basics programmation
  •  
    Programmation Java

    Comment accéder à un tableau de chaînes en JSP

    JavaServer Pages ( JSP) est un cadre qui permet aux développeurs Java de créer des sites Web dynamiques et interactifs . JSP peut stocker des données comme des chaînes de texte dans ce qu'on appelle des tableaux. Une matrice est une séquence de cellules de mémoire qui stockent des données chacune d'un certain type . Accès aux tableaux de chaînes est assez simple, mais requiert la syntaxe que tout le monde le sait. En créant et en accédant à votre propre tableau de chaînes , vous pouvez apprendre comment il est facile de faire des tableaux avec des JSP. Choses que vous devez
    ordinateur avec un navigateur Internet et l'éditeur de texte
    Afficher plus Instructions
    1

    Ouvrez un éditeur de texte comme " WordPad ". Ce fichier texte sera le lieu où vous passez tout votre code source. Vous aurez besoin pour créer le squelette d'une page web en premier. Écrivez le texte suivant dans le fichier de code source :



    Accès une Page 2 <p> place tout le code JSP trouve dans les étapes suivantes entre les balises < % et%> symboles. <br> 3 <p> créer un tableau de chaîne nommée " voitures ». Ensuite, remplissez cette chaîne avec quelques différents types de soins . Ecrivez ce qui suit au début du fichier de code source : <br> <p> String [ ] voitures = { "Lamborghini ", " Porsche ", " BMW "}; <br> 4 <p> boucle à travers le gamme de voitures utilisant une boucle "for " qui rend visite à chaque membre d'un tableau une fois , si vous pouvez faire quelque chose de spécial comme l'impression sur chaque nom de voiture. Cela exige l'accès au tableau. Accéder à un tableau se fait en utilisant le nom du tableau suivi par les symboles [ ] . L' élément de la matrice passe entre ces symboles . Par exemple, pour imprimer le cinquième élément d'un tableau , vous écririez " arrayName [5] ». Pour imprimer tous les éléments du tableau , écrire les instructions suivantes: <br> <p> for (int i = 0; i < cars.length ; i + +) { <br> <p> out.print (« < , p > " + voitures [ i ] +" </p> . "); } <br> <p> <br> 5 <p> Enregistrez le fichier sous " Array.html " Voir le fichier dans un navigateur Web. <br> <br> <div class=fr4><script language='javascript' src='http://www.ordinateur.cc/ad/fr/4.js'></script></div> <div class=fr5><script language='javascript' src='http://www.ordinateur.cc/ad/fr/5.js'></script></div> </td> </tr> </table> <table width="95%" border="0" align="center" cellpadding="0" cellspacing="0"> <tr> <td align="center" > </td> </tr> </table> <table width="95%" border="0" align="center" cellpadding="0" cellspacing="0"> <tr> <td height="39" align="left" >Article précédent:<span class="nr"> <a class='LinkPrevArticle' href='/programmation/Programmation-Java/89822.html' >Comment faire pour convertir un tableau de chaînes à double </a></li></span><br /> Article suivant:<span class="nr"> <a class='LinkNextArticle' href='/programmation/Programmation-Java/89824.html' >Tutoriel sur Java Logging APIs </a></li></span></td> </tr> </table> <table width="95%" height="10" border="0" align="center" cellpadding="0" cellspacing="0"> <tr> <td align="left" ></td> </tr> </table> <table width="96%" height="22" border="0" align="center" cellpadding="0" cellspacing="0" bgcolor="#EFEFEF"> <tr> <td width="2%" align="left" ></td> <td width="98%" align="left" >Articles recommandés</td> </tr> </table> <table width="95%" height="10" border="0" align="center" cellpadding="0" cellspacing="0"> <tr> <td align="left" ></td> </tr> </table> <table width="95%" height="10" border="0" align="center" cellpadding="0" cellspacing="0"> <tr> <td align="left" > <li><a href="/programmation/Programmation-Java/89705.html">Comment ignorer un cas sensible entrée en Java </a></li><li><a href="/programmation/Programmation-Java/89384.html">Comment contracter un tableau dans une chaîne Comma-Separated en Java </a></li><li><a href="/programmation/Programmation-Java/89048.html">Comment retourner un champ caché dans JSP </a></li><li><a href="/programmation/Programmation-Java/89701.html">Pourquoi sont Java Strings Immuable </a></li><li><a href="/programmation/Programmation-Java/89215.html">Comment construire un arbre de décision en Java Open Source </a></li><li><a href="/programmation/Programmation-Java/89117.html">Comment envoyer un e-mail dans le JDK 1.6 </a></li><li><a href="/programmation/Programmation-Java/89704.html">Comment faire pour trouver l' union de deux ensembles en Java </a></li><li><a href="/programmation/Programmation-Java/90337.html">Comment faire pour ajouter à KeyListener </a></li><li><a href="/programmation/Programmation-Java/89186.html">La fonction de rappel en Java </a></li><li><a href="/programmation/Programmation-Java/90369.html">Un tutoriel sur SQL Server JDBC </a></li> </td> </tr> </table> <table width="95%" height="10" border="0" align="center" cellpadding="0" cellspacing="0"> <tr> <td align="left" ></td> </tr> </table></td> </tr> </table> <table width="980" height="12" border="0" align="center" cellpadding="0" cellspacing="0"> <tr> <td></td> </tr> </table> <table width="980" height="90" border="0" align="center" cellpadding="0" cellspacing="0" bgcolor="#3597E2"> <tr> <td align="center" class="foot">Connaissances Informatiques © http://www.ordinateur.cc <br /> </td> </tr> </table> <!--top start --> <!--top end --> </body> </html>