Swing/AWT/SWT :: Loading Image File From Source Directory?

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


ADVERTISEMENT

Extract File In Same Directory As Source File

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

JSF :: How To Read CSV File From User Defined Directory Path For Loading To Managed Bean

Jan 10, 2015

I'm using a PrimeFaces UploadedFile xhtml page to select a csv file to read and write using a managed bean (SuperCSVParser.java). The file is read and written to an entity class which then persists the data to a database. The application works fine if I specify a file path on the physical server and select a csv file on that file path. But for the production version I want the user to select ANY file name from ANY directory on their local system.

I know about the FacesContext methods and I've looked at some methods from the java.io File class. Most of these methods are about getting the path from the server, where I want to 'pass' the path String from the client machine to allow the uploaded file to go through. When I try with the below code I get:

java.io.FileNotFoundException: data.csv (The system cannot find the file specified)

I'd like to know what I'm doing as I prefer not to explicitly declare a path in the final app. I'm almost sure that's possible.

<h:form enctype="multipart/form-data">
<p:fileUpload value="#{SuperCsvParser.file}"
mode="simple"
auto="true"

[Code].....

View Replies View Related

Swing/AWT/SWT :: Why Isn't Image Loading

Jun 20, 2014

I have added the image in the src and bin directories and cross-checked that the name of the image file is correct..Here is the main class

import javax.swing.*;
public class apples
{
public static void main(String args[])
{
JFrame frame = new JFrame();
MyDrawPanel wid = new MyDrawPanel();
frame.add(wid);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setVisible(true);
frame.setSize(300,300);
}
}

and here is the class that does the image adding part

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

public class MyDrawPanel extends JPanel
{
public void paintComponent(Graphics g)
{

Image image = new ImageIcon("b.png").getImage();
g.drawImage(image,20, 20, this);
}
}

View Replies View Related

Swing/AWT/SWT :: Loading Image From Relative Path

Mar 15, 2015

All I want to do is load an image into a swing JLabel and display it, but I'm going to have to make a JAR of the program and submit it for grading, so I need to be able to get the path of the image file relative to the JAR (at least I think that's how it works - I've never made a JAR before. Right now I'm just trying to load it from a path relative to my netbeans project). I've tried at least 20 different combinations of paths, file locations within the project, etc., but nothing works.

Anyways, here's the test class I've been using to try to figure this out in its current iteration. Right now the image I want to load is in src/resources and the class is in

src/imagedisplaytest
package imagedisplaytest;
import javax.swing.*;
import java.awt.*;
public class ImageDisplayTest extends JFrame {
private JLabel testLabel;
public ImageDisplayTest()

[Code]...

What's the best way to do this?

View Replies View Related

Finding Source Files In Other Directory With Class Path Option

Apr 23, 2015

I'm having another issue. I have 2 java source files(see below). They are place in the same directory. How do I compile them using classpath?

I have already tried 1st attempt :

javac -cp com.companyname.interview.DuplicateReplace.java DuplicateReplaceTest.java [did not work!]
2nd attempt: javac -cp DuplicateReplace.java DuplicateReplaceTest.java [again, did not work!]
package com.companyname.interview;
public class DuplicateReplace { /* code */}

[Code] ....

View Replies View Related

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 View Related

JSP :: How To Show Loading Image

Feb 11, 2014

I have to show a loading image which should tell some proper loading message in jsp.

View Replies View Related

Image Loading In Java Using HTML

Apr 9, 2015

I want to load image in java using Html. it works in neatbeans. But if i create a jar file it not load

URL url = getClass().getClassLoader().getResource("http://www.javaprogrammingforums.com/images/sms.png");
String tab= "<html><table style='width:100%; table-layout:fixed'><tr><td style='width: 30px' rowspan=2 >
<img src='"+ url+ "' width=36 height=36/></td><td font color='#ffffff' style='width: 110px'><font size='4'>
"+namePerson+"</font></td><td font color='#ffffff'>"+myDate+"</td></tr> <tr>
<td font color='#ffffff' style='width: 110px'>"+str1+"</td></tr></table></html>";

jLabel1.setIcon(new ImageIcon(url));// it works
tmodel.addRow(new Object[] {tab}); // not works why

not work in jar file..

View Replies View Related

Loading Multiple Image Icons

Aug 17, 2014

import java.awt.*;
import javax.swing.*;
import java.awt.event.ActionListener;
import java.awt.event.ActionEvent;
import java.awt.event.*;
import java.awt.image.BufferedImage;
import javax.swing.JFrame;
public class Golf extends JFrame
{
boolean isRunning = true;

[Code] ....

It loads and draws fine when I am using one image. But if I un-comment the others are try to draw the background of my game as intended, nothing gets drawn. I've played around with a number of different solutions but nothing works, I've had multiple images work in previous programs doing exactly the same thing and I really don't understand whats up.

View Replies View Related

Reading DICOM Image From Another Directory

May 5, 2014

I am trying to crate an interface for the following file (code). The interface that I am trying to create will display a open dialog box where the user chooses which image (.dcm) it would like to open and then it should open it in a frame. The code below shows opening the image. The image opens when the image is in the same folder as the source code but I need it to open from a given path and I am really confused on how to do that. I have tried a lot of methods but still doesn't seem work. How to make it work.
 
This is the code (assuming the parameter that you are passing in image.dcm, I have tried a full path name on mac computer which is like /Users/Documents/image.dcm, where this path name never works):
 
/**
* This class displays the first frame of a file from any format
* supported by ImageIO.
* In the case of DICOM files, stored values are displayed as
* is, without using Value of Interest or Presentation LUTs.
*/
class Read1 {
  public static void main(String[] s) {

[Code] .....

View Replies View Related

JavaFX 2.0 :: Display Image In WebView From External Directory

Jun 18, 2014

I have a WebView and a Javascript that appends an <img> tag in a webview.
 
Like so:
 
function insertImg(src) {
   $("body").append("<img src='" + src + "'/>");
}
 
I call this function with the following code:
 
String path = "file://Users/rod/Desktop/123.gif";
webengine.executeScript("insertImg('" + path + "')");
 
However, this does not work and no image is displayed.
 
How can this be achieved?

View Replies View Related

Servlets :: File Is Located In Root Directory Of Project But System Cannot Find File Specified

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

Write Interface Directory To Manipulate Entries In Telephone Directory

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

Swing/AWT/SWT :: Saving And Loading Data Of Jtable

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

Swing/AWT/SWT :: Image Manipulation - Create Application Where Image Is Displayed On One Label

Apr 7, 2014

Sir, I'am new to Swing Programming. I have to create an application where an image is displayed on one Label. The same image has to be split in parts and stored in database pert wise. Later the user has to retrieve the entire image by viewing a small part of the image. I have already displayed the full image on the Label, now i don't know how to split the image and store it part wise in the database.

View Replies View Related

Copying From One File (source) To Another File (destination)

Jul 5, 2014

I have a file(source.txt) that contains some texts. Now, the java code is to run through each line in the source file and check if that line begins with a number and if true, copy that line to the destination file(destination.txt). I have the code but I am not sure why I can't loop through each line in the source.txt file. Below is my java code:
 
public static void copyFile(File source, File destination) {
BufferedReader br;
try {
FileWriter fw = new FileWriter(destination.getAbsoluteFile());
PrintWriter bw = new PrintWriter(fw);
br = new BufferedReader(new FileReader(source));
String line = new String();

[Code] ....

As shown in the source.txt file, there are 4 lines in the file but when the execution gets to while ((line = br.readLine()) != null) , it executes to false.. Why this is so?

below is the source.txt file

12 is a number
Green is bad
5 is not so cool
you are right

View Replies View Related

Swing/AWT/SWT :: Where Is Event Source Object

Feb 28, 2015

java.awt.Component is an abstract class, and it's direct Sub-classes are Button, Canvas, Checkbox, Choice, Container, Label, List, Scrollbar, Text Component

So, when I use addXListener(mylistenerclass m);//which is a method of Component class which object is holding the list of all listeners, for a particular Event Source?

I am under the assumption that - there is an Event Source Object(possibly static) for every Event Source type(mouse, keyboard etc) that holds a list of destinations(classes that implements their listener interface) - added to the the object via addXListener method. When an event happens(mouse click, drag etc) the Event Source Object creates an Event Object and send it to all the destinations. Is my assumption correct? I can't seem to find the location or declaration of Event Source Object and the list where it stores it's registered destinations.

View Replies View Related

Loading File From Input

Mar 24, 2015

how I can change my code so that somebody can actually input the specified file path, rather than having it fixed in the code. I previously used

Scanner in = new Scanner(System.in);
System.out.println("What is the filename?");
String input = in.nextLine();
File file = new File(input);

But then the program would not display the frequencies.

import java.io.File;
import java.util.*;
/*
This program will allow the user to enter in a text file name, when prompted the program will anaylser the text and display the frequencies
*/
public class AssP {
public static void main(String[] args ) {
Scanner scan;
try {
Scanner scanner = scan = new Scanner(new File("C:/Users/Mary/workspace/Assingment/src/test.txt"));

[code]....

This is my current code and I need to so the user can load their own files.

View Replies View Related

Servlets :: Url Pattern - Real Directory Vs Virtual Directory

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

No Such File Or Directory

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

Swing/AWT/SWT :: Loading SVG Images On JPanel With Transparent Background

Mar 27, 2014

I'm working on loading SVG images on Jpanel using "Apache(tm) Batik SVG Toolkit" , but after the image get loaded it has "white background" and "not transparent" one like PNG images.

I checked "fill" of rect attribute on the xml file of the svg image and it was correctly set to none, I also Tested the image on html document and it was trasparent, but in my java app it has white background.

The Question is there any way to load SVG images with transparent background on Jpanel ?

View Replies View Related

Add Source To Bat File?

Aug 30, 2014

Have the following .bat file that compiles the ReadMindWave.java source with jna and jfreechart. I get a javac error saying 'no source' when the .bat is run, as the .java source needs to be included in the .bat file. Where it goes in the following .bat file?

@echo off
echo Compiling %1 with JNA and JFreeChart...
javac -Xlint:deprecation -cp "C:jna-master*;C:jfreechart-1.0.19libjfreechart-1.0.19.jar;C:jfreechart-1.0.19libjcommon-1.0.23.jar;."%*

The file to compile is in C:MindWaveTestsReadMindWave.java

View Replies View Related

Applets :: Jar File Loading From Database

Oct 22, 2014

We have a custom authorization in our application login page, authorization by using eToken and java (signed jar classes) and applet as login button on page. It's work fine on older and current java versions like 7u67, 7u71 but it's not work on new java version 8u25.
 
We write a test class named AuthControl without package, we found that problem is in .jar file path, for example:

&APPLET_VERSION. is a jar file name, uploaded using "Shared Components / Static Files - Create"
 
<script src="https://www.java.com/js/deployJava.js"></script>
<script>
    var attributes = {code:'AuthControl',
        archive:'#WORKSPACE_IMAGES#&APPLET_VERSION.', width:132, height:37}; // problem in the path to the .jar file
    var parameters = { scriptable:true, mode:'login' };
    var version = '1.6';
    deployJava.runApplet(attributes, parameters, version);
</script>

Error is:
...
java.lang.ClassNotFoundException: AuthControl
  at sun.plugin2.applet.Applet2ClassLoader.findClass(Unknown Source)
  at sun.plugin2.applet.Plugin2ClassLoader.loadClass0(Unknown Source)
  at sun.plugin2.applet.Plugin2ClassLoader.loadClass(Unknown Source)
  at sun.plugin2.applet.Plugin2ClassLoader.loadClass(Unknown Source)
  at java.lang.ClassLoader.loadClass(Unknown Source)
  at sun.plugin2.applet.Plugin2ClassLoader.loadCode(Unknown Source)
  at sun.plugin2.applet.Plugin2Manager.initAppletAdapter(Unknown Source)
  at sun.plugin2.applet.Plugin2Manager$AppletExecutionRunnable.run(Unknown Source)
  at java.lang.Thread.run(Unknown Source)
basic: load: class AuthControl not found.
...

But if we use a direct path to the jar file, it's work fine without errors, example:

<script src="https://www.java.com/js/deployJava.js"></script>
<script>
    var attributes = {code:'AuthControl',
        archive:'http://example.com/myapplet.jar', width:132, height:37};
    var parameters = { scriptable:true, mode:'login' };
    var version = '1.6';
    deployJava.runApplet(attributes, parameters, version);
</script>

Why this is happens on 8 java version?

View Replies View Related

Unzip A Zip File To A Directory

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

Creating File Directory

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







Copyrights 2005-15 www.BigResource.com, All rights reserved