Swing/AWT/SWT :: Saving Text File As HTML In Target Directory
Jun 7, 2014
JFrame parentFrame = new JFrame();
File f12=new File("E:
ewfile.txt");
JFileChooser fileChooser = new JFileChooser();
fileChooser.setSelectedFile(f12);
fileChooser.setDialogTitle("Specify a file to save");
int userSelection = fileChooser.showSaveDialog(parentFrame);
[code]....
I want to save selected text file as html file in target directory....
View Replies
ADVERTISEMENT
Apr 24, 2015
I'm working on a simple text editor, and I'm currently saving the contents of my JTextPane in a file using an HTMLEditorKit (text is a JTextPane):
private void save() throws IOException {
int returnVal = fc.showSaveDialog(window);
if (returnVal == JFileChooser.APPROVE_OPTION) {
StyledDocument doc = (StyledDocument)text.getDocument();
HTMLEditorKit kit = new HTMLEditorKit();
BufferedOutputStream out;
[Code] ....
The problem I'm having is that after opening a file that I saved, it does not display (if I disable text/html, it displays the entire html code, but when I re-enable it, nothing displays at all.) Am I loading it wrong, or am I setting the JTextPane's text incorrectly? Or is it, perhaps, another error that I didn't catch?
View Replies
View Related
Apr 16, 2015
I have a file that has the following text in it:
# Main configuration file for DEDServer
# Starting resource values
startingGold=1000000000
startingElixir=1000000000
[Code] ....
View Replies
View Related
Jan 25, 2014
My problem is that I want to load an Image from the source directory in Canavas' paint() method.
My code is currently (in a try/catch)
g.drawImage(ImageIO.read(new File(imageLocation)), imageX, imageY, null);
Where imageLocation leads to an image on my HDD ("C:UsersVladdeDocumentsFolders-Filesfolder.png")
View Replies
View Related
Apr 30, 2015
I've written a program to read files in a directory but I'd like for it to only read the text files of that directory.
import java.io.*;
public class Data {
public static void main(String[] args) throws IOException {
String target_dir = "C:files";
File dir = new File(target_dir);
File[] files = dir.listFiles();
[Code] .....
View Replies
View Related
Mar 31, 2015
Within tomcat "webapps" directory, have lots of scanned PDF files (size in KB and MB).Using Java and JSP, I want to search for any user entered text in these scanned PDF files.The result must display the name of those PDF files which has that entered text.
View Replies
View Related
May 4, 2015
How can I Cache the data I'm reading from a collection of text files in a directory using a TreeMap? Currently my program reads the data from several text files in a directory and the saves that information in a text file called output.txt. I would like to cache this data in order to use it later. How can I do this using the TreeMap Class? These are the keys,values: TreeMap The data I'd like to Cache is (date from the file, time of the file, current time).
import java.io.*;
public class CacheData {
public static void main(String[] args) throws IOException {
String target_dir = "C:Files";
String output = "C:Filesoutput.txt";
File dir = new File(target_dir);
File[] files = dir.listFiles();
[Code] ....
View Replies
View Related
Jan 10, 2015
I need to make some operations with a file. I struggle to understand why Apache is throwing this error:
(The system cannot find the file specified)
My file is located in the root directory of the project.
And here is how I indicate the path to it:
String filePath = "default.jpg";
InputStream inputStream = new FileInputStream(new File(filePath));
If I put the file in the Eclipse folder, it works... But I need it to work if I put it in my project's root folder.
View Replies
View Related
Jul 2, 2006
I am using a JFrame with JPanel (with radiobuttons and jtextfields) and am wanting to get data from a text file (around 100 words) and input 4 words at a time into my gui. I have been trying to do this by filling an string array with the data, (no problems here) then using jTextField to read the array. (having a few problems in this area though) Am about 80% there...but just wondering is there a better way to approach this problem, that is, inputing words into gui, refreshing, input 4 new words, refreshing, etc.
View Replies
View Related
Mar 12, 2014
this is the following task i am trying to do. Write an interface Directory to manipulate entries in a telephone directory for the University. The interface must support the following operations:
1) The ability to insert new entries into the directory. Entries should be stored in alphabetical order of surname.
2) Delete entries from the directory either by name or number
3) Provide a lookup method that will find the extension no of a member of staff given
his/her name. You should try to make this method run as efficiently as possible.
4) Change a person's telephone number
5) Print the telephone directory in a neatly tabulated fashion.
Write a class ArrayDirectory that implements this interface using an array to store the telephone directory information. The class must store the surname and initial for each member of staff and their telephone extension (a four digit number which may start with a zero). You may find it useful to define a class Entry to store information about individual entries. The entries should be read into the array from a text file consisting of multiple lines in the following format:
Surname<tab>Initials<tab>Telephone extension
The part that i am stuck on is trying to do the entry method, delete entries method, loop up method, change persons telephone number and be able to print it.
View Replies
View Related
Sep 23, 2014
I have two classes - One is Read.java and the other is Display.java
Read.java looks like this
public static void main(String[]args){
File file = new File("test.txt");
try{
FileReader fr = new FileReader(file);
BufferedReader br = new BufferedReader(fr);
[Code] ....
Display.java looks like this:
public class Display extends JFrame {
private JComboBox comboBox;
private JPanel contentPane;
/**
* Launch the application.
*/
public static void main(String[] args) {
//method call to access other class
[Code] ....
Instead of having it so it displays the id's to the console,is there a way I can set it straight up to the combo box?
View Replies
View Related
May 15, 2014
I have my below Swing GUI code in which I want to read and display some contents present in text file say (test.txt) which is located in my local disk (C: est.txt). My pane tab 2 is divided into two halves horizontally. How can I read and write the test.txt file contents under the tab tab2 in the first half of the pane(where currently it is 2 written)?
Sample test.txt present in my local hard disk location
username:test1
Password:test1
DataBasename: testDB
CODE FOR TABBED PANE
import javax.swing.*;
import java.awt.*;
public class SplitPaneExp {
public static void main(String[] args){
Runnable r = new Runnable() {
public void run() {
JFrame frame = new JFrame("WELCOME");
[Code] ......
View Replies
View Related
Jun 13, 2014
This is a snippet code that im developing. (no source of it) . I am facing a trouble to extract file in the same directory as the source file (example: extract here option)
public class HelperAction {
public static void unzip(String zipFilePath)throws IOException {
File dir = new File(zipFilePath.substring(0,zipFilePath.length()));
// create output directory if it doesn't exist
if(!dir.exists()) dir.mkdirs();
FileInputStream fis;
[Code] ....
View Replies
View Related
Apr 6, 2015
I am trying to make a program where a user can enter guests name for a hotel, the JTable includes rows for the name of the tenant, the room number, month etc.
I've made the table, however I am having some trouble in saving the data that I put into the table. I used jtextfield and a jbutton to but data into the jtable. I am trying to save the data, and load it just buy clicking a button.
table.setModel(new DefaultTableModel(
new Object[][] {
},
new String[] {
"Room", "Name", "Month", "Payment"//table rows
}
));
This is my basic table. And what I'm trying to do to save the data is:
DefaultTableModel model = new DefaultTableModel();
private JFileChooser myJFileChooser = new JFileChooser(new File("."));
private void saveTable() {
if (myJFileChooser.showSaveDialog(null) ==
JFileChooser.APPROVE_OPTION ) {
saveTable(myJFileChooser.getSelectedFile());
[Code] ....
When I run my program, I'm able to click on a button, and the dialog box will appear, I'm also able to save the data to a file. However when I click on the retieve data button I made the dialog box opens, the file is there, however when I click it, nothing happens.
View Replies
View Related
Sep 7, 2014
I want to set an html text on al label, but also call a method.
I tried:
Java Code:
scoreMens.setText("<html>joejoe<BR>jaja<BR</html>" + naamSpeler.laatKaartenZien()); mh_sh_highlight_all('java');
But the naamSpeler.laatKaartenZien(), which returns a string, doesn't show on the label. Is there a way to call a method and use a html text on a label?
The name of the thread should be "call method in html text on label"
View Replies
View Related
Feb 26, 2015
I want to setContentType("text/html") to be able to use html in JTextPane but I get BadLocationException when I try to remove the first line.
Here is the code
setContentType("text/html") ;
try {
Element root = getDocument().getDefaultRootElement();
Element firstLine = root.getElement(0);
getDocument().remove(firstLine.getStartOffset(), firstLine.getEndOffset());
}
catch (BadLocationException e) { }
View Replies
View Related
Oct 1, 2014
I am learning FileIO and I am having an ArrayIndexOutOfBoundsException for the following code and I am unsure why...
import java.io.*;
public class ArrayWriter {
public static void main(String[] args) {
PrintWriter fout = null;
int[] data = new int[10];
for(int i = 0; i<data.length; i++) {
data[i] = (int)(Math.random() * 101);
[Code] ....
View Replies
View Related
Oct 27, 2014
I was able to create the txt file. How to get it to output my code. I know it's an object and it is a way to save data.
package multiplicationFile;
import java.util.Scanner;
import java.io.*;
public class Multiplication {
public static void main(String args[]) throws IOException {
PrintWriter outF = new PrintWriter("multiplications.txt");
[Code] ....
View Replies
View Related
May 26, 2014
Consider the url-pattern:
<url-pattern> /Beer/* </url-pattern>
The web app structure is: -
webapps
|
-->AdviceApp
|
-->WEB-INF
--> {{Beer}} This can be real or virtual.
My book says that /Beer/* can be a real or a virtual directory. What is the difference between the two and how do I create a virtual directory in tomcat ?
View Replies
View Related
Jan 8, 2015
So i have this program that is supposed to execute a command when a button is clicked. I get an error: java.io.IOException: Cannot run program "/Users /brianallison/Documents/Java/RELAP5": error=2, No such file or directory
The actual PATH should be /Users/brianallison/Documents/Java/RELAP5 GUI/issrs/Dist.At least that is where the Java app is and the executable that I am trying to execute when the butotn is clicked. Executable name is relap5.x or relap5.exe depending on the OS.
private void btnRunRelapActionPerformed(java.awt.event.ActionEvent evt) {
String in = " -i " + tfIntdta.getText();
String rst = " - r " + tfRstplt.getText();
String out = " -o " + tfOutdta.getText();
String strip = tfStpdta.getText();
String guistring = "-n gui";
String wd = System.getProperty("user.dir");
String osver = System.getProperty("os.name");
String app = "";
[code].....
View Replies
View Related
Jan 21, 2014
I am trying to save the data a person enters to a file. See code below. It is compiling however the file created only shows largest =89, i want the file to show all the data a person enters.
import java.util.*;
import java.io.*;
public class LargerOfThree3{
public static void main(String args[]){
Scanner in = new Scanner(System.in);
[Code] ...
View Replies
View Related
Nov 21, 2014
I am trying to unzip a zip file to a directory but I've tried several different codes and none of them work.The zip structure is like this:
test.zip
New Text Doc.txtNew Folder
New Text Doc.txt
and this is the code I am using
try {
// Open the zip file
ZipFile zipFile = new ZipFile(outputFileName);
Enumeration<?> enu = zipFile.entries();
while (enu.hasMoreElements()) {
ZipEntry zipEntry = (ZipEntry) enu.nextElement();
[code]....
View Replies
View Related
May 12, 2014
I am working on a java logic game and I want it to be able to work on other people's Mac's, so I tried to figure out how to make it create a folder in which it can create files. The file creating is going fine however the folder never seems to create.Here is the code I attempted to use:
File logicFile = new File("/Library/Application Support/LogicGameSupport");
if(!logicFile.exists()){
if(logicFile.mkdir()){
System.out.println("Directory success");
}else{
System.out.println("Directory failed");
}
}
View Replies
View Related
Apr 30, 2014
Here my code . Iam trying to open text file in window_pane it will open when i click on save it will ask destination to save file if i save example like Read.txt it will save...when i go and check in that folder Read.txt file won't found...what is the error ....
Java Code:
import javax.swing.*;
import javax.swing.filechooser.FileFilter;
import javax.swing.filechooser.FileNameExtensionFilter;
import java.io.*;
import java.net.MalformedURLException;
import java.awt.*;
import java.awt.event.*;
public class Read extends JFrame
[Code] .....
View Replies
View Related
Apr 30, 2014
Here my code am trying to open text file in window_pane it will open when i click on save it will ask destination to save file if i save example like Read.txt it will save...when i go and check in that folder Read.txt file won't found..
import javax.swing.*;
import javax.swing.filechooser.FileFilter;
import javax.swing.filechooser.FileNameExtensionFilter;
import java.io.*;
import java.net.MalformedURLException;
import java.awt.*;
import java.awt.event.*;
[code]....
View Replies
View Related
Dec 7, 2014
Everything compiles but doesn't work like it should. What the idea is, is to be able to add class personnel objects and have them saved in a file, so that later on i would be able to see them.
Back to my problem: When i create a new "Personnel" and try to run Write and read, to see if my new "Personnel" is added to the list, it's not there at all... what do i do wrong?
import java.io.*;
class Personnel implements Serializable
//No other action required by Serializable interface.
{
private long payrollNum;
private String surname;
private String firstNames;
[Code] ....
View Replies
View Related