Cell Phones Logo

Related Topics:

Posted on Aug 19, 2011
Answered by a Fixya Expert

Trustworthy Expert Solutions

At Fixya.com, our trusted experts are meticulously vetted and possess extensive experience in their respective fields. Backed by a community of knowledgeable professionals, our platform ensures that the solutions provided are thoroughly researched and validated.

View Our Top Experts

Java application stop - Cell Phones

1 Answer

Anonymous

Level 2:

An expert who has achieved level 2 by getting 100 points

MVP:

An expert that got 5 achievements.

Sergeant:

An expert that has over 500 points.

Governor:

An expert whose answer got voted for 20 times.

  • Expert 178 Answers
  • Posted on Aug 19, 2011
Anonymous
Expert
Level 2:

An expert who has achieved level 2 by getting 100 points

MVP:

An expert that got 5 achievements.

Sergeant:

An expert that has over 500 points.

Governor:

An expert whose answer got voted for 20 times.

Joined: Aug 01, 2011
Answers
178
Questions
0
Helped
28733
Points
701

Java Application has stopped that means your software has been corrupt.
So please visit the nearest care according to your handset and get your mobile FLASHED and install the latest software.
Install you java application software and make sure it has been installed.
thanks for using fixya

Add Your Answer

×

Uploading: 0%

my-video-file.mp4

Complete. Click "Add" to insert your video. Add

×

Loading...
Loading...

Related Questions:

4helpful
1answer

How to fix my cherry mobile T8 Java Application stopped

How to fix my cherry mobile T8 Java Application stopped
Jul 11, 2011 • Cell Phones
6helpful
1answer

How to stop 'allow network access' pop up window in nokia 7610 supernova. Its very annoying that it always comes in between when i am surfing the net.

you download the java software first before you can run: on the phone to find your JAVA applications. Then select the section to stop the application software, press the left soft key operation, go to see the applications access the. Application access - communication - network access, if the software has a license certificate, then select Always allow, no election for the first time asked.
application software access - communication - data interchange, if the software has a license certificate, then select Always allow, no election for the first time asked.
application software access - data access - read user data, select Always allow the software without authorization certificate for each inquiry to the election.
application software access - data access - increased selection and editing of data is always permitted, the software did not authorize the certificate to select Always ask.
need to read the phone system, network or application software to download the JAD is authorized with the certificate.
this way can avoid the use of mobile phones, java software, always prompt " allow network access " this problem, this method is suitable for the Nokia S40 operating system models.
0helpful
1answer

What is J2ME?

J2ME
Java Platform, Micro Edition (Java ME) provides a robust, flexible environment for applications running on mobile and other embedded devices—mobile phones, personal digital assistants (PDAs), TV set-top boxes, and printers. Java ME includes flexible user interfaces, robust security, built-in network protocols, and support for networked and offline applications that can be downloaded dynamically. Applications based on Java ME are portable across many devices, yet leverage each device's native capabilities.

Java Security
Java security technology includes a large set of APIs, tools, and implementations of commonly used security algorithms, mechanisms, and protocols. The Java security APIs span a wide range of areas, including cryptography, public key infrastructure, secure communication, authentication, and access control. Java security technology provides the developer with a comprehensive security framework for writing applications, and also provides the user or administrator with a set of tools to securely manage applications.
1helpful
2answers

Java applications are not running on my sony ericsson G502

maybe its because your Java Applications is not Support with SE G502...

try download another Java Applications which support with SE G502
0helpful
1answer

How to play audio clip in java

  • Create an AudioClip object
  • Load .au sound file into AudioClip
  • Play sounds once or loop continuously
  • Stop playback


Here's how the code for these steps looks:
import java.applet.*;
AudioClip ac = getAudioClip(getCodeBase(), soundFile);
ac.play(); //play once
ac.stop(); //stop playing
ac.loop(); //play continuously


It would seem logical to use this same code to play audio clips in a Java application. Unfortunately, if you do that you will get errors from the compiler. Why? Because the AudioClip object and the getAudioClip() method are part of the java.applet package -- and are not part of applications. The good news is we can dive down and make things work ourselves.
The trick to solving this problem is to use some undocumented features that are provided by Sun in its JDK. Taking a peek inside the classes.zip file from the Sun JDK (using any of the various zipfile utilities), we find not only the standard Java packages such as java.applet but also sun.audio. (These are in the directory sun/audio.)
The sun.audio package contains everything we need to be able to play audio clips! Here's the code:
import sun.audio.*; //import the sun.audio package
import java.io.*;
//** add this into your application code as appropriate
// Open an input stream to the audio file.
InputStream in = new FileInputStream(Filename);
// Create an AudioStream object from the input stream.
AudioStream as = new AudioStream(in);
// Use the static class member "player" from class AudioPlayer to play
// clip.
AudioPlayer.player.start(as);
// Similarly, to stop the audio.
AudioPlayer.player.stop(as);


To use a URL as the audio stream source, substitute the following for the input stream and audio stream setup:
AudioStream as = new AudioStream (url.openStream());


Playing the audio stream continuously adds a bit more complexity:
// Create audio stream as discussed previously.
// Create AudioData source.
AudioData data = as.getData();
// Create ContinuousAudioDataStream.
ContinuousAudioDataStream cas = new ContinuousAudioDataStream (data);
// Play audio.
AudioPlayer.player.play (cas);
// Similarly, to stop the audio.
AudioPlayer.player.stop (cas);
4helpful
1answer

Problem- installed java app got hidden

Reset ur Mobile.
They Will Work.
Jan 09, 2009 • Cell Phones
0helpful
7answers

Type of JAVA

java.applet(PersonalJava only), java.awt and sub-packages, java.beansjava, iojava.lang and sub-packages, java.lang.reflect, java.math, java.net, java.rmi and sub-packages, java.security, java.sql, java.text
Not finding what you are looking for?

346 views

Ask a Question

Usually answered in minutes!

Top Cell Phones Experts

ADMIN Andrew
ADMIN Andrew

Level 3 Expert

73783 Answers

ADMIN Eric
ADMIN Eric

Level 3 Expert

42222 Answers

john h

Level 3 Expert

29497 Answers

Are you a Cell Phone Expert? Answer questions, earn points and help others

Answer questions

Manuals & User Guides

Loading...