Rechercher : dans
Par :

Les composants JTable et JScrollBar en java

Dernière réponse le 25 jun 2007 à 17:53:45 mohamed sylla, le 9 avr 2002 à 13:35:27 
 Signaler ce message aux modérateurs

Bonjour,
Mon probleme concerne les composants JTable.
En fait lorsque le nombre de colonne est eleve(exemple 30 colonne)
le nom des colonnes n'apparait pas entierement.Et pourtant j'ai mis:
JTable table=new JTable();
JScrollBar barre=new JScrollBar(table).
Mais seules les barres de defilement verticales apparaissent.
Veuillez donc me donner plus d'information sur ces composants JTable et JScrollBar.
Merci d'avance.

Meilleures réponses pour « les composants JTable et JScrollBar en java » dans :
[Firefox] plugin Java Jre de Sun VoirA) Les différentes variantes Java chez Sun B) Installation sous Mandriva Limited Edition 2005 ETAPE 1 ETAPE 2: Création du lien symbolique C) Installation sous debian lenny D) Installation sous ubuntu hardy heron A) Les différentes...
Installer Java sous Ubuntu VoirPar défaut, Firefox n'est pas fourni avec Java. Voici comment procéder pour l'installer: Ouvrez un terminal (Menu Applications > Accessoires > Terminal) et tapez: sudo aptitude install sun-java6-jre sun-java6-plugin ou sudo aptitude install ...
[Logiciel libre] Installation firefox 2.0+java+flash VoirInstallation firefox 2.0+java+flash en ligne de commande A. INTRODUCTION B. INSTALLATION FIREFOX 1. Création d'environnement 2. Téléchargement et vérification de la signature 3. Installation de Firefox 4. Démarrage de l'application C....
Télécharger Java Runtime Environment VoirJava Runtime Environment (JRE) installe la machine virtuelle Java, permettant de jouer en ligne, de discuter avec des personnes dans le monde entier, de calculer les intérêts de votre prêt immobilier ou de visualiser des images en 3D. Ces...
J2EE - Java 2 Enterprise Edition VoirIntroduction au Java Framework Le «Java Framework» (Java 2 Platform) est composé de trois éditions, destinées à des usages différents : J2ME : Java 2 Micro Edition est prévu pour le développement d'applications embarquées, notamment sur des...
Java - Premier programme VoirPremière application avec Java La première chose à faire est de créer un simple fichier texte (sans mise en forme) et de taper les quelques lignes suivantes : // Votre premiere application en Java class FirstApp { public static void main...
Java - Les types de données VoirLes primitives Java est un langage orienté objet, c'est-à-dire que les éléments manipulés sont des classes, ou plus exactement des objets, c'est-à-dire des instances de classes. Toutefois ces objets contiennent des données possèdant un type (et...

1

choubaka, le 10 avr 2002 à 08:04:20

Essaye un JScrollPane au lieu d'un JScrollBar

Chouba
"Obsédé des travaux manuels non pratiquant"

Répondre à choubaka

5

mohamed sylla, le 13 avr 2002 à 00:57:17

Merci Chouba pour vos conseils .Je vais aller les tester le plus rapidement possible.C'est que ces composants JTable combine a JScrollBar m'ont longtemps fatigues.
Encore une fois merci pour tout.

Répondre à mohamed sylla

2

choubaka, le 10 avr 2002 à 08:06:00

Voilà ce qui la javadoc, sorry c'est en anglais

Provides a scrollable view of a lightweight component. A JScrollPane manages a viewport, optional vertical and horizontal scroll bars, and optional row and column heading viewports. You can find task-oriented documentation of JScrollPane in How to Use Scroll Panes, a section in The Java Tutorial. Note that JScrollPane does not support heavyweight components.



The JViewport provides a window, or "viewport" onto a data source -- for example, a text file. That data source is the "scrollable client" (aka data model) displayed by the JViewport view. A JScrollPane basically consists of JScrollBars, a JViewport, and the wiring between them, as shown in the diagram at right.

In addition to the scroll bars and viewport, a JScrollPane can have a column header and a row header. Each of these is a JViewport object that you specify with setRowHeaderView, and setColumnHeaderView. The column header viewport automatically scrolls left and right, tracking the left-right scrolling of the main viewport. (It never scrolls vertically, however.) The row header acts in a similar fashion.

By default, the corners are empty. You can put a component into a corner using setCorner, in case you there is some function or decoration you would like to add to the scroll pane. The size of corner components is entirely determined by the size of the headers and scroll bars that surround them.

To add a border around the main viewport, you can use setViewportBorder. (Of course, you can also add a border around the whole scroll pane using setBorder.)

For the keyboard keys used by this component in the standard Look and Feel (L&F) renditions, see the JScrollPane key assignments.

A common operation to want to do is to set the background color that will be used if the main viewport view is smaller than the viewport, or is not opaque. This can be accomplished by setting the background color of the viewport, via scrollPane.getViewport().setBackground(). The reason for setting the color of the viewport and not the scrollpane is that by default JViewport is opaque which, among other things, means it will completely fill in its background using its background color. Therefore when JScrollPane draws its background the viewport will usually draw over it.

By default JScrollPane uses ScrollPaneLayout to handle the layout of its child Components. ScrollPaneLayout determines the size to make the viewport view in one of two ways:

If the view implements Scrollable a combination of getPreferredScrollableViewportSize, getScrollableTracksViewportWidth and getScrollableTracksViewportHeightis used, otherwise
getPreferredSize is used.

Chouba
"Obsédé des travaux manuels non pratiquant"

Répondre à choubaka

3

Hades5k, le 10 avr 2002 à 13:01:34

Il ne pourrait pas mettre des JPanel dans un GridLayout de 1 colonne et plusieurs rangées?
Il pourrait ainsi régler chacune des rangées à sa guise non?

Répondre à Hades5k

4

choubaka, le 10 avr 2002 à 15:46:11

Il pourrait, mais ça risque de devenir du jabol

Chouba
"Obsédé des travaux manuels non pratiquant"

Répondre à choubaka

6

 trectrec, le 25 jun 2007 à 17:53:45

Un JScrollBar est une seul scrollbar. mais toi tu as besoin de deux. donc pour cela delcare une JScrollPane. avec celle ci tu as la scrollbar horizontal et la scrollbar vertical.

Une JScrollPqne est une rectangle

Répondre à trectrec
Collection CommentÇaMarche.net