JavaFX 2.0 :: UI Not Fully Updated After Transitions (only On Linux)

Feb 27, 2015

After a transition of an object  the UI is not fully updated. One can still see "lines" from the "movement". This only happens on Linux (Debian) and not on Windows. Is this a known issue that has been fixed in later Javafx releases ? I am still using Java7 because of WinXP support

View Replies


ADVERTISEMENT

JavaFX 2.0 :: Slow Performance On Linux For Visual Effects

Mar 6, 2015

Visual effects such as Transitions perform very poor on linux "wheezy" compared to windows. I noticed this on different PC's, checked for Java7 and Java8. If the UI contains many objects then the transition sometimes does not even appear.
 
I do not think this is graphic card related since videos play quite ok.
 
I use the default ATI driver without Xorg.conf file and  installed the xcompmgr
 
and tried several options, such as
 
Option "Composite" "Enable"
or
Option        "backingstore" "true"   
Option        "AllowGLXWithComposite" "true"
 
This did not speed up things, are there other things that I could do to improve the performance ?

View Replies View Related

Syncing Music With Photo Transitions?

Nov 17, 2014

Web based program, basically a slide show template where the user uploads a series of photos, they are dumped into the pre-fabbed template of a predetermined set of transitions in sync with music. I will set the templates to transition based on the time stamp of the beat of the music at certain intervals. The end users will be able to then create their own slide show "movie" based on the templates.

Problems I see are the syncing between the music and the images loading. Wondering if it's doable client side or if I need to have it rendered server-side.

View Replies View Related

Why Do-while Loop Isn't Fully Working

Sep 23, 2014

I'm having trouble figuring out why my do-while loop isn't fully working. As you can see, it will loop for the first 2 values of i (1 and 2), but then after that if i doesn't fit in my if or if-else statements, the loop stops.

int iterationNum = 1;
int cycle = 0;
double denominator = 1.0;
double pi = 0.0;
double validPrint;
int n = 1;
do {
pi += (4.0 * Math.pow(-1.0, cycle))/denominator;

[code]....

View Replies View Related

Servlets :: Session-timeout Not Fully Working

May 9, 2014

in my web.xml my session time out is working but not fully working in my ui i use tiles , i have 5 clickable side panels i try to set timeout for 1 minute or 10 minutes for testing after the time is timeout this what happen working refresh the page after time out = working ,directed me into log in page which is correct.i have 5 clickable side panel in my page after timeout when i click the first 2 in side panel tabs it directed me into log in page which is also correct not working after the timeout when i navigate the page i click the other 3 side panels i can still navigate into the page but when i click the first 2 side panel it directed to log in page w/c is correct but can still navigate the page the other 3 side panels

issue : my session timeout is not fully working on my page.

<session-config>
<session-timeout>10</session-timeout>
</session-config>

View Replies View Related

How To Make All Shapes Fully Stay Within Frame Border

Feb 16, 2014

I have a problem with a shape generator. It randoms the shapes just fine, I just do not know how to make all the shapes fully stay within the frames border.

RandomShapeMaker.java

import java.awt.Color;
import java.awt.Graphics;
import javax.swing.JPanel;
import java.util.Random;
public class RandomShapeMaker extends JPanel{
private static final Random randomShape = new Random();
public void paintComponent( Graphics g ){
super.paintComponent( g );

[Code] ....

View Replies View Related

JSP :: Navigation System Putting Two Headers In HTML File When Fully Rendered In Browser

Oct 21, 2014

I inherited a navigation system which is like this:

index.jsp
homepage.jsp

When I click on the "view source" in the browser, I get two headers like this:

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html lang="en_US">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<meta http-equiv="X-UA-Compatible" content="IE=edge">

[Code] ....

I know this is not good. I have inherited the nav system from someone else and I have a lot of complicated AJAX and JQuery going on inside my module. I am not sure how to resolve.

View Replies View Related

Array Not Being Updated

May 7, 2014

Two spots in my code not working as enteneded,in one spot it seems to be skipping threw my if statement and the other is not updating on my counter at the end

package roulette;
import java.util.*; 
public class Roulette {
public static void main(String[] args) {
// TODO Auto-generated method stub
Scanner scan = new Scanner(System.in);
Scanner scan1 = new Scanner(System.in);
Scanner scan2 = new Scanner(System.in);
char userinput;

[code]....

View Replies View Related

Swing/AWT/SWT :: JTable Not Getting Updated

Nov 17, 2014

I am preparing a small solution. Below is how the functionality works.

1. Login Screen
2. Successful Login will take to a MDI Form
3. Click the menu, a JInternalFrame will open in the JDestopPane.
4. JInternalFrame has a JTable.
5. JInternalFrame has a JButton available for adding new data.
6. When JButton is clicked, a new JInternalFrame is popped up with some JTextField and JButton to save the data.
7. After saving the data (after insert query), a JDialog is opened to upload Logo (update query for BLOB), There are two buttons in the JDialog, one is for uploading the image, another one is uploading it later.
8. The logo is displayed in the JDialog and if the JButton, for upload is pressed, update the database and reload the JTable in the JInternalFrame is called.

My challenge is in point 8. The function is called properly, but the table is not getting refreshed.

JButton in JDialog for uploading the Logo
private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) {
// TODO add your handling code here:
JOptionPane.showMessageDialog(this, "Image Uploaded Successfully");
companyConfig cc = new companyConfig();
//cc.reloadTable();
cc.updateTable();
this.dispose();

[code]....

View Replies View Related

Swing/AWT/SWT :: JTable - How To Repaint With Updated Data

Jun 5, 2014

Here's what I would like to happen:

Java/Swing dialog box appears on the user's screenIt allows the user to enter 2 values into labelled text fields (fname/sname)They select a "Click Me" push button which I hope will write the data into the table. But the table does not get refreshed.

If I minimise the dialog box and then open it again, the data still does not appear.

The code I originally built using eclipse/WindowBuilder. I've cut it back and tried to isolate the issue. But I still cannot figure it out.

I've added some diagnostic log messages to ensure that I am seeing the various events I think I need to see and have put code in the action callbacks etc.

import java.awt.EventQueue;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.border.EmptyBorder;
import java.awt.GridBagLayout;

[Code] .....

View Replies View Related

JSF :: How To Get Back Bean Updated Property Value In Javascript Function

Oct 11, 2014

get updated bean property in javascript function. This function I am calling from <a4j: commandbutton> this button is having actionListner, which is updatin bean property based on some User selection. When this action is completed then I am calling javascript function in oncomplete. But that javascript function is not taking updated bean value, it is always taking first value.I can't use hidden text as there are some drop downs which User will selct and then hit commandbutton which will update bean property.

<div align="center">
<a4j:commandButton
value="#{msgs.notification_searchNotificationReportLbl}"
id="searchNotificationRptBtn" styleClass="controlButtonActive"
actionListener="#{dashboardCtrl.loadOTVsubmit}"
oncomplete="drawChart();"

[code]....

View Replies View Related

Variable Updated To Point To The New Array Last Full Cell Index Value

Jul 10, 2014

I'm trying to set a variable to point to the last full cell of an array and then create a new larger array and then have the variable be updated to point to the new array's last full cell index value.

a) Should the variable be declared static?
b) What would be the best initial value to set this variable to? Shouldn't it correspond to a <for> loop index rather than a solid integer?

private lastfullcell = a[i];
private int [] a;

c) How would you update <lastfullcell> because if you passed the index through a method's loop index isn't the array index value garbage collected after the method completes?

View Replies View Related

Can't Run Javac On Linux?

Mar 17, 2015

Java Code: esolve@mypad:~/temp$ java -version
java version "1.7.0_75"
OpenJDK Runtime Environment (IcedTea 2.5.4) (7u75-2.5.4-1~trusty1)
OpenJDK 64-Bit Server VM (build 24.75-b04, mixed mode)
esolve@mypad:~/temp$ javac HelloWorld.java
program 'javac' is in the following packages:
* default-jdk
* ecj
* gcj-4.8-jdk
* openjdk-7-jdk
* gcj-4.6-jdk
* openjdk-6-jdk
please try:sudo apt-get install <package> mh_sh_highlight_all('java');

I see there is jdk in my ubuntu system but when I run javac, it asks me to install a jdk.

View Replies View Related

EJB / EE :: When Timer Data In Cache Is Updated On One Server / How To Make It Synchronize To Other Servers

Oct 31, 2014

Our company has a web based project which using the Jboss EAP 6.1 +EJB 3.1 + JSF2 and deployed it in a cluster environment(Server A,Server B and Server C).We have created some schedule tasks by using EJB timer service and the timer data file is stored in a central file system.And users can login and access to a task configuration page to customise his own tasks by create,update,delete actions etc.But we find that the timers don't work correctly in the cluster environment.

For example.When we start the Servers(A,B,C),each server will load the timer file data into his own node cache from the central file system.But when one user go to the task configuration page to update or delete his own tasks from one of the Servers, it only update the change on its own node cache and don't replicate the timer data to other nodes' cache and which cause the problem.

I know there is one way to fix it is that we could shutdown the three Servers and re-boot them and the timer data file will be re-loaded into each server's cache. But we can't do that because the users want their own created/updated tasks take effect immediately once they change them.My question is that when the timer data in cache is updated on one server, how to make it synchronize to the other Servers'.

View Replies View Related

How To Install Java In Linux

Apr 5, 2014

I am trying to install Java on my Debain based Linux OS and can`t seen to figure it out. I first typed "chmod +x jdk-8-nb-8-linux-i586.sh", than typed "./ jdk-8-nb-8-linux-i586.sh" to install it. It started to install, but than it gave my this message: (computer name has been changed)

bobsmith@bobsmiht-OptiPlex-GX620:~/Downloads$ ./jdk-8-nb-8-linux-i586.sh
Configuring the installer...
Searching for JVM on the system...
Preparing bundled JVM ...
./jdk-8-nb-8-linux-i586.sh: 1: eval: /tmp/.nbi-5045119.tmp/jre-7u4-linux-i586.bin: not found
Cannot prepare bundled JVM to run the installer.
Most probably the bundled JVM is not compatible with the current platform.

How do I fix this? My Linux computer is not connected to the internet, I don`t know if this is a problem or not.

View Replies View Related

Is There Any Java GUI Editor For Linux

Jul 29, 2014

Not a Java editor with a GUI, but and editor for editing Java GUI's (Graphically (With JFrame, Swing etc) (Kinda like FrontPage for HTML only for Java/Linux. You just add stuff / drag objects around and then optionally review the code after..

View Replies View Related

Swing/AWT/SWT :: Java Stop JScrollPane Auto Scrolling Back To The Top When JTextArea Updated

Feb 7, 2014

I have a swing application that gets football scores from a website using Jsoup.

When the "Get Scores" button is pressed, the scores are printed to a JTextArea with a JScrollPane.

I have also used a SwingWorker to update the scores every couple of seconds.

My problem is that every time the JTextArea updates, the JScrollPane scrolls back to the top of the text area. I wan the scroll bar to stay where the user left it.

Here is my code (The update is currently set to update every 1 second so you can see what the scroll bar is like).

import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
import org.jsoup.Jsoup;
import org.jsoup.nodes.Document;
import org.jsoup.select.Elements;
public class frame extends JFrame {

[Code] ....

View Replies View Related

HTTP Download From LINUX Server?

Oct 13, 2014

my project is all about downloading files(text files, music files, etc) from a LINUX server using UI build in java, my mentor told me to use HTTP Client (Java apache), but how to start this.

Here's a sample scenario:

ScreenHunter_1.jpg

Consider the directory structure above.

First, how to connect with this LINUX server using JAVA.

ScreenHunter_2.jpg

and how to dowload the above file.

View Replies View Related

Swing/AWT/SWT :: Trying To Use JFileChooser In Eclipse In Linux

Apr 9, 2014

I'm trying to JFileChooser to open up a window. I'm just trying to learn how to use it for a school assignment this week. The problem is I can't get anything to show up. I can create a new window and print to the console without errors, but JFileChooser doesn't do anything. No errors either.

import java.awt.*;
import javax.swing.*;
public class TestingStuff extends JFrame {
public TestingStuff() {
setTitle("This is a new window!");
setVisible(true);

[Code] .....

View Replies View Related

Running Java File From Linux CMD

Apr 24, 2014

import acm.util.* ;
import acm.program.*;
import java.awt.* ;
class Chap6_ex1 extends ConsoleProgram {
public void run() {
println("This program displays a randomly schosen card.");
int number = rgen.nextInt(1 ,13);
int suit = rgen.nextInt(1 ,4);

[Code] ....

I am running the this from a Linux command line , in the cmd first i use :

javac -classpath acm.jar Chap6_ex1.java

end then :

java -cp .:acm.jar Chap6_ex1

The output i m getting after second command is :

Exception in thread "main" acm.util.ErrorException: Cannot determine the main class.
at acm.program.Program.main(Program.java:1358)

I know the problem is from the RandomGenerator class in packet acm.util.* but i dont know how to fix the problem . Every other program has worked . What I am missing or how this whole issue of packet importing works when running a java file from cmd ?

View Replies View Related

Running Jar With Libraries From Jar File In Linux

May 22, 2014

I'm running a jar of an application and library jars from lwjgl. I'm creating a java process. It's working on Windows but not on linux.

I tried replacing the semicolons with colons but it didn't work, it just said "Main class not found: Application.natives.linux" or something like that. gamePath is the path the application is in. osName is the name of the operating system.

Here's my code:

String jarRunner = String.format("java -Djava.library.path="%snatives/" + osName + "" -cp "%sjar/lwjgl.jar;%sjar/lwjgl_util.jar;%sjar/jinput.jar;%sjar/slick.jar;%sApplication.jar" main.Main", gamePath, gamePath, gamePath, gamePath, gamePath, gamePath);
  
Process p = Runtime.getRuntime().exec(jarRunner);
 
[Code] ....

How can I make it work on linux?

View Replies View Related

Run Sudo Linux Commands From Java Program

Apr 6, 2014

I want to find information about running sudo commands from java, but without gksudo/kdesudo.

This is my code. It works, but after removal "sudo" element.

Java Code:

String array[]={"sudo", "dolphin"};
Process proc = null;
try {
proc = Runtime.getRuntime().exec(array);
}
catch (IOException e) {
e.printStackTrace();
} mh_sh_highlight_all('java');

How I can insert password in this terminal? I tried write pass after array with commands and in, and even in outputstream.

View Replies View Related

Export Solaris Display On Linux And Trying To Launch JNLP

Feb 23, 2015

I am trying to export Solaris Display on Linux and trying to launch JNLP.

I am trying to follow the instruction mention in the following URL.

[URL] .....

I would like use the property mentioned in the above article in JNLP file on client side .

I did following nothing is working.

1. <argument>awt.toolkit=sun.awt.motif.MToolkit </argument>
2. <property name="awt.toolkit" value="sun.awt.motif.MToolkit"/>
3. java-vm-args="-Dawt.toolkit=sun.awt.motif.MToolkit"
4. export AWT_TOOLKIT=MToolkit

How do i check JNLP client is using it?

View Replies View Related

Getting UnknownHostException While Executing Java Class In Linux Machine

Oct 16, 2014

Find the error log here ......

[pccbuildmgr@svl-jbuild-d1 Logical_Versioning]$ java -jar VersionUpdate1.jar

Picked up _JAVA_OPTIONS: -Xmx10g -XX:MaxPermSize=10g

can get the values for 1.0

java.net.UnknownHostException: home
at java.net.PlainSocketImpl.connect(PlainSocketImpl.j ava:195)
at java.net.SocksSocketImpl.connect(SocksSocketImpl.j ava:366)
at java.net.Socket.connect(Socket.java:529)
at java.net.Socket.connect(Socket.java:478)

[Code] ....

View Replies View Related

Running Java Program In 32bit / 64bit Versions Of Linux

Jul 17, 2014

I wrote some java applications on my computer, which is 32-bit Ubuntu 12.04 LTS. Could the application run on both 32-bit and 64-bit versions of linux? Or could it only run on 32-bit versions of linux?

System.out.println(System.getProperty("sun.arch.da ta.model")); // outputs 32

I would like to know if I run it on a 64-bit version of linux if it will take advantage of the performance advantages of 64 bits.

View Replies View Related

Class File Compiled In Linux Mint Does Not Work On Windows

Dec 20, 2014

Is Java really cross platform programming language?

I compiled a .java file and tested it on linux mint, then I tried to run it on windows vista but it did not run.

The message is: Error: Could not find or load main class myClassName.

The JDK is 8

View Replies View Related







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