Skip to main content
Filter by
Sorted by
Tagged with
1 vote
1 answer
102 views

I was making a J2ME MIDlet application. I wrote the code, compiled it to Java 1.2 bytecode, prevrified it and then packed it into jar. But when I sent it to my Nokia N72, it said: Unable to install. ...
Mehrzad.20105's user avatar
0 votes
0 answers
31 views

What is the way to find an operating system and its platform that is used on a cheap featured phone or any featured keypad mobile when not mentioned in its spec sheets? For popular branded devices ...
Mubarak Basha's user avatar
1 vote
1 answer
319 views

I want to "recreate" J2ME / CLDC with a recent version of javac (e.g. 11.0.19) and compile a purposely built Java program without any or minimal base classes. Obviously classes like java....
mythbu's user avatar
  • 850
0 votes
1 answer
155 views

I am trying to generate a meaningful report for business owners that reflects the system's behavior during the run of multiple groups of test cases separated in different JMX files. I have created a ...
Oleg Tarasenko's user avatar
-3 votes
3 answers
1k views

I want to create my own Java MIDlets, like games and other stuff, so i tried to install Java ME SDK to get started. But when i install it i get this problem. What in the world should i do!! I tried ...
LastKnight's user avatar
0 votes
1 answer
272 views

I am using Jmeter 5.2.1. While recording the script due to the heavy response, body data is not recorded properly and due to this when I tried to modify the ids at that time its request failed. In ...
ankit dasani's user avatar
0 votes
1 answer
107 views

I have the below response on JMeter 5.2.1. <!DOCTYPE html> <html> <head> <script id="web.layout.odooscript" type="text/...
ankit dasani's user avatar
1 vote
1 answer
101 views

I would like to know how to change, or set value to the media volume, I am currently making a game, that will use the audio volume changing. It seems to me, that you need to use javax.microedition....
BHms game Java's user avatar
0 votes
1 answer
41 views

Using JMeter Gui, If we choose aggregate listener and provide JMeter execution result file. it loads all aggregate results on JMeter table and that can be stored in csv file too. I want this activity ...
Amit Nigam's user avatar
1 vote
1 answer
1k views

I have some j2me games, usually running in "KEmulator", and I want to publish them on my server and play them using a browser, is this possible?
GFTXWD's user avatar
  • 15
1 vote
0 answers
1k views

Is it possible to run old JAR games, the ones that used to run on nokia feature phones, natively on desktop without an emulator? I figured it should be able to run on any device that has JRE but I'm ...
Shriram's user avatar
  • 349
1 vote
0 answers
234 views

I wonder if there is a possible way to get working Java me sdk on recent Mac OS (12) natively. Last official version of sdk is from 2009 and won't launch, probably because of 32 bit architecture. If ...
Publius's user avatar
  • 39
0 votes
1 answer
47 views

To enable Bluetooth shutdown in my software I tried to operate from this place and could not find this How to turn off Bluetooth with j2me
A good person's user avatar
0 votes
0 answers
392 views

My problem is I have implemented a TCP socket client in android which sends continuously "Hello" messages to the server to maintain a client-server connection and receives messages from the ...
Ayesha's user avatar
  • 1
0 votes
0 answers
19 views

I have simple web service application created on JAX-WS. I need to move this application on embedded device that runs Java micro edition. Is it possible run JAX-WS on Java micro edition? public class ...
vico's user avatar
  • 18.5k
0 votes
0 answers
135 views

hi all i have been trying to write the a j2me email client code which enables the midlet to send an email into my account but i faced the following error "Must issue a STARTTLS Command first"...
Yitbarek's user avatar
0 votes
0 answers
53 views

I am trying to use a method replaceAll in my Java 2 ME midlet, but recently found out, that there isn't such option. I was trying to recreate the method, but with no luck. Here is the code I tried: ...
Deesak's user avatar
  • 179
2 votes
1 answer
1k views

Below is what I'm using, OS: macOS Big Sur NetBeans: 12.5 Java: 7 / 8 / 17 I'm trying to install Java Me plugin Upon installation, i kept getting this I have tried using java 7, 8 and 17 (I'm using ...
ramen87x's user avatar
  • 180
1 vote
0 answers
1k views

I have been trying to use Netbeans 12 IDE to remote develop on the Raspberry PI. I have got the JDK 17 installed on the PI. I can add a platform, attach it to the PI and test the platform, the ...
B Gehrke's user avatar
0 votes
1 answer
89 views

I'm trying to construct a linearColorScale of AnyChart, and I've tried the code below but haven't gotten any results. Please let me know if there is a bug in this code or if I am missing something. P....
AYESHA SIDDIQUI's user avatar
0 votes
0 answers
188 views

The code "Region.Op.REPLACE", at two places in AndroidDisplayGraphics.java throws illegalArgumentException in android 9 and later versions due to policy change. Here is the complete java ...
manzil safar's user avatar
2 votes
1 answer
224 views

I am writing an app in Java ME for old Symbian devices (and not only them). I have a problem. I am trying to draw emojis using png images. They are stored on some server in 2 folders. The first folder ...
Computershik's user avatar
0 votes
0 answers
32 views

I have jar demo1.jar . I want to replace one .class file [at com/example/demo2/ location] using java program . path is like demo1.jar/BOOT-INF/classes/com/example/demo2/.
Ganesh Java's user avatar
2 votes
1 answer
2k views

I downloaded J2ME plugins from here: https://www.oracle.com/java/technologies/javame-sdk-downloads.html I can't install the plugins, this is the error: Some plugins require plugin Java Profiler Core ...
יהונתן אלברט's user avatar
0 votes
1 answer
340 views

I want to write Java programs for the Raspberry Pi Zero (it has 512 MB RAM) and i don't know if i should choose the Java SE (Standard Edition) or the Java ME (Micro Edition). Thanks for help
NoobyTHICC's user avatar
-1 votes
1 answer
64 views

In order to obfuscate my J2MEWTK project I am being instructed to do the following: However this link is now dead and lacks detail, where can I find a version of Proguard that works with the Sun ...
0x777C's user avatar
  • 1,102
-2 votes
2 answers
668 views

I am using Java ME x IntelliJ for this project but I seem to be getting the Generics are not supported at language level '1.4' error for the below code block: AccessPoint accessPoint = AccessPoint.of(&...
user12346306's user avatar
1 vote
1 answer
31 views

I've written a MIDlet server that handle tcp inputstream. I send xmlhttprequest with an http:// url from a html web page and it works fine. I want to do the same with an https url. with my ...
nel23FX's user avatar
  • 11
1 vote
1 answer
127 views

I am creating a bouncing ball in Netbeans using J2ME Loader. I have done the bouncing ball parts but struggling to track the ball position. I have searched online but not so much information there. ...
Idris Zamberi's user avatar
1 vote
1 answer
1k views

i need this nokia sdk but i can't find it anywhere on the internet. i tried to access the nokia forum site and it seems like it has been down for a long time it shows a message on my browser ...
Lorenzo Vargas's user avatar
1 vote
0 answers
44 views

I'm working on a J2ME application but it's likely socket behaviour is similar in J2SE and almost no one is using J2ME so I think it's worth understanding how J2SE does it. When I send a TCP message, ...
0x777C's user avatar
  • 1,102
1 vote
0 answers
92 views

I recently bought a Raspberry Pi 4 and searched for tutorials about Java on Raspberry. Most tutorials recommended to use the micro version of Java, Java ME. But I was wondering if it still has an ...
Boommeister's user avatar
  • 2,157
0 votes
1 answer
720 views

I'm trying to implement AES in J2ME, I've implemented mine based on the C# example on Wikipedia: https://en.wikipedia.org/wiki/Rijndael_MixColumns#Implementation_example My AES implementation is ...
0x777C's user avatar
  • 1,102
0 votes
0 answers
62 views

I'm implementing Pollard's rho algorithm in J2ME, but the number I want to factorise is a long already and I need to be able to square the input number and subsequent 128-bit numbers produced. Seeing ...
0x777C's user avatar
  • 1,102
3 votes
1 answer
1k views

I recently dug out an old phone that runs J2ME applications and would like to write applications for it, in my attempts to get the SDK running with Netbeans and figure out the emulator I've hit many ...
0x777C's user avatar
  • 1,102
0 votes
1 answer
138 views

I have been trying to run Java Mobile applications through the Java Wireless Toolkit 2.5.2_01. These applications are located in the apps directory of the Java Wireless Toolkit. I'm facing with this ...
Ndanga Wandji's user avatar
0 votes
1 answer
122 views

Initially, I was trying to parse a String into parts and found split method. Then I realized that I cannot use it, because the compiler does not support most of the functions and methods. I thought I ...
Burak's user avatar
  • 2,593
1 vote
1 answer
3k views

I do not understand the differences between JEE, J2EE, JSE, JME and JDK. For what I do need this stuff? May someone help me? I found this shortcuts while learning about Java. I am new to programming.
SlothLazybones's user avatar
0 votes
1 answer
324 views

I have a small J2ME app that should send some bytes to a socket and read response. However, when I close OutputStrean, the socket closes too, and I can't read response. I thought I could try ...
Antons Channel  's user avatar
0 votes
2 answers
166 views

I have a J2ME app that should connect to the socket, launched somewhere. When I run everything at localhost, it all works fine, but if I launch it on my server and try to connect it in the client, it ...
Antons Channel  's user avatar
2 votes
1 answer
829 views

I'm quite new to sockets and to J2ME and I want to create an app, that would send some text to a server (via socket) and then receive answer. So when I try to write the output, I get an exception: ...
Antons Channel  's user avatar
0 votes
0 answers
42 views

I have a server that recieves a serialized object, handles it, and then returns output. I would like to send an object via a MIDlet, but J2ME has no ObjectOutputStream class. What am I supposed to do?
Antons Channel  's user avatar
1 vote
0 answers
563 views

I am trying to set up the Java ME 8 development environment. I am setting up the environment on a Windows 10 64-bit PC to develop a Java ME Embedded 8 application for use on a Raspberry Pi 3 model B. ...
C.Gibbons's user avatar
  • 323
0 votes
1 answer
390 views

I am new to J2ME. I was writing a simple program to request user for their name. I am however getting The Application has unexpectedly quit because it ran out of memory. How do I solve this?
Martin Mbae's user avatar
  • 1,296
1 vote
0 answers
817 views

I have byte array of gif image and i'm using something like this import javax.microedition.lcdui.Image; byte[] picBytes = (byte[])obj; Image.createImage(picBytes, 0, picBytes.length)); I want to ...
Nitin Upadhyay's user avatar
0 votes
1 answer
70 views

i'm making a small test shoot-em-up for my nokia and i've already made the content for it. Is there a way to compile or port Eclipse projects into a Midlet, and if there is, how do i do that? This is ...
kot32's user avatar
  • 3
0 votes
0 answers
121 views

I'm working on J2ME application. When i try to launch application it gives me error about sublime. so that library is, > Java HotSpot(TM) 64-Bit Server VM warning: You have loaded library > /...
Nitin Upadhyay's user avatar
1 vote
2 answers
489 views

I wanted to install J2ME and configure it with Netbeans. I followed two different tutorials word by word but somehow mine would give me many errors. After so much searching I realized that the JDK, ...
Martin Mbae's user avatar
  • 1,296
5 votes
0 answers
776 views

After reading this comment proving that it's possible to write custom apps for the new Nokia 3310 3G (TA-1006), I'm trying to get my own app running. After doing a lot of reading about what MIDP, ...
user avatar
1 vote
1 answer
1k views

I am trying to set up NetBeans 8.0 for development in Java ME (I know this is legacy software, but it is the only software I know of that supports Java ME), however, NetBeans will not detect my Java ...
big_otts's user avatar

1
2 3 4 5
115