Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Problem: I have a button, that opens JFileChooser. Near to button I want to show the path to the selected file or folder. If I just put it in JLabel/JTextfield and text out of borders, it wrap path from the right side (like C:/My Documents/..., but I want (I think it gives more information) to wrap (cut?) it from the left side (for example, .../My photos/me.jpg.

Does there exist an easy way to do it?

share|improve this question
1  
"Near to button I want to show path to selected file/folder." Add a tool tip (that contains the path) to the button. – Andrew Thompson Nov 12 '11 at 1:02

2 Answers

Caret can do that, for example

import java.awt.*;
import javax.swing.*;

public class DialogTest extends JFrame {

    private static final long serialVersionUID = 1L;
    private JTextField text;

    public DialogTest() {
        text = new JTextField("Test Test Test Test Test Test Test Test", JLabel.RIGHT);
        int textLength = text.getText().length() - 2;
        text.setCaretPosition(textLength);
        setLayout(new BorderLayout());
        add(BorderLayout.CENTER, text);
        setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        setPreferredSize(new Dimension(200, 110));
        pack();
        setLocationByPlatform(true);
        setVisible(true);
    }

    public static void main(String[] args) {
        SwingUtilities.invokeLater(new Runnable() {

            public void run() {
                DialogTest dialogTest = new DialogTest();
            }
        });
    }
}
share|improve this answer
+1, for a simple usage of the JTextField. – camickr Nov 12 '11 at 3:16
label.setText( file.getName() + " Path: " + file  );
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.