HotSpot is the standard Java virtual machine used by both the Oracle and OpenJDK Java runtime environments.
0
votes
0answers
4 views
create access point in kubuntu 11.04 to access internet from smart phone and tablet
I want to share the cable internet of laptop with my smartphone and tablet. I know this should be possible if I can create adhoc wireless network in laptop. My operation system on laptop is kubuntu ...
-1
votes
0answers
29 views
How to run android project using wifi in mobile? [closed]
In my project i need to run my app in mobile using wifi provided by my laptop as hot spot.
I have made my laptop as wi-fi hot spot using Connectify but im not able to run my project in my mobile.
I ...
1
vote
0answers
12 views
Android How can I detect if a device is hosting a WLAN-hotspot
How can I detect if my device is hosting a WLAN-hotspot programmatically?
4
votes
2answers
47 views
Difference between JVM and HotSpot?
What exactly is HotSpot and how does it relate to JVM and OpenJDK? Is it a library? What exactly does it do?
Also, what is the difference between OpenJDK and HotSpot?
0
votes
0answers
9 views
map highlight.js / hotspot in responsive webdesign
So I am rebuilding a page in my website because my client has asked for a change in transitions for the full page slider. I realized that the old code the old developer used for the maphighlight.js ...
1
vote
0answers
20 views
Iphone WIFI “call home” function?
We're deploying a Wifi hotspot service in some locations via unifi. You have to sign up with your mobile number and get an sms which includes the activation link.
The Problem is:
The iPhone seems ...
-3
votes
1answer
44 views
How to replace default Java File class? [closed]
Is there any way to replace default java File class without changing my code? My idea was to enable async file operations in order to make my tests run faster (or at least try to).
I think that the ...
0
votes
0answers
36 views
Use java code to enable portable wi-fi hotspot
currently I am building a very small native app for my android phone. I want to active the portable wi-fi hotspot when I click one button in the app. But I didn't know how to invoke Android API to ...
0
votes
1answer
33 views
Image Area Map at multiple resolutions i.e. hotspots in x y coordinates
I'm using an Area Map over my image to allow users to select points which perform various JavaScript functions.
The coordinates of the shapes are hard coded into the html page as this allows my ...
3
votes
1answer
56 views
Why is there a call to “String.valueOf(Object)” in my string concatenation bytecode?
I have the following two methods in a small microbenchmark app (running JDK 1.6):
public static String testStringBuilder3(String str1, String str2, String str3, String str4, String str5) {
return ...
0
votes
1answer
44 views
Using huge pages and DirectByteBuffer in java hotspot jvm on Linux
What I would like to do
I need to use direct memory to avoid the GC moving things around. I would like to enable huge pages for those.
So far
The flag -XX:+UseLargePages works fine when using heap ...
-4
votes
0answers
125 views
Share laptop's wireless connection with Android device via bluetooth or USB teethering [closed]
So this is an unusual circumstance that I can't find an answer to.
Devices:
Android device using Jelly Bean
Windows 7 Pro laptop
Roku unit that cannot utilize hotel WiFi because of authentication ...
0
votes
2answers
51 views
does Clojure on Hotspot require any non-FOSS components
When I use Clojure with the (Sun/Oracle) Hotspot VM, what other software components are required, at a minimum, by Clojure? Are all those (minimal) components Open Source?
I see that the Hotspot VM ...
0
votes
0answers
37 views
CSS tooltip on hotspots within image?
Can anyone tell me how to add a CSS tooltip to an image with multiple hotspots? Or point me in the direction of a relevant tutorial? I would like the tooltip to display on hover and upon clicking the ...
0
votes
2answers
57 views
Using accessors/getters can be faster?
Background: I am planning to port a library I have written from C++ to Java. The code deals with lists of size n of d-dimensional points and needs to compute scalar products, etc. I wanted to make my ...
1
vote
1answer
35 views
Is it possible to find hotspots in a parallel application using a sampling profiler?
As far as I understand a sampling profiler works as follows: it interupts the program execution in regular intervals and reads out the call stack. It notes which part of the program is currently ...
4
votes
2answers
82 views
How can JVM jitter get caused by a for loop with no object allocations?
I have been micro benchmarking the following code and I noticed something interesting that I am hoping somebody can shed more light on. It leads to a situation where it looks like a for loop can carry ...
2
votes
3answers
70 views
Is it possible to programatically enable hotspot mode in iPhone?
I want to develop an application that programatically creates a Personal Hotspot with a predefined name on an iPhone.
Is it possible?
I can't find any documentation about it
0
votes
0answers
16 views
Security implications of Java inner classes
Today while reading through the Hotspot source code, I noticed that the VM includes a check on InnerClasses attributes when they're accessed through the Class reflection methods.
Specifically, if ...
0
votes
1answer
21 views
Jprofiler- how to find out application actual rendering time of pages
In our application, there are scheduler queries running in background.
While profiling the code through Jprofiler in Java EE & probes - JBDC
thread selection - all thread groups
aggregation ...
0
votes
1answer
49 views
Track another process by logcat in service
I am trying to listen the event when someone connect to/disconnect from my portable AP hotspot. I try this code
Process p;
try
{
p = Runtime.getRuntime().exec("logcat -s hostapd:I");
...
0
votes
0answers
25 views
Issue with ParNewGC after CMS GC is run
no longer constantly CMS GCing, looks good, thanks Alexey; though we have a new issue. The application ran one CMS GC per day and operated very smoothly. After the third day, the application froze up. ...
6
votes
4answers
104 views
Java garbage collection and atomic events/stop gc pauses interrupting a sequence of functional calls
I have a complex large multithreaded application to which I am introducing new functionality.
I have added a call to a piece of specialist hardware (via a vendor supplied JNI lib). However before ...
0
votes
1answer
281 views
What's the best way to programmatically disable android wifi hotspot?
I created a test wifi hotspot app. The app essentially enables and disables wifi hotspot functionality for the android platform(tested from 2.3 to 4.1).
I've noticed two issues with the app that I'm ...
1
vote
0answers
107 views
Node JS internet gateway/captive portal like used in public WiFi hotspots
I want to build a node js internet gateway/captive portal. So I can have a user 'authorize' his mac address or ip address if the mac address is not possible like used for wifi hotspots
So what I have ...
0
votes
1answer
56 views
Eclipse and HotSpot VM: does it run / debug client or server by default?
Note: this is not a question about server or client Java applications. It's about the client and server versions of the HotSpot VM.
I am currently using Eclipse 4.2 and Oracle's Java 1.7, though this ...
0
votes
1answer
99 views
On Android 4.0, 4.1, 4.2, how to open android Ap progmatically or Go to Settings->More…->Portable Wi-Fi hotspot by code?
The only possible solution is :
Intent intent = new Intent(android.provider.Settings.ACTION_LOCATION_SOURCE_SETTINGS);
//Is there any value for entering hotsopt?
...
6
votes
0answers
123 views
Strange behaviour of the Hotspot loop condition optimizer
Based on the discussions around an answer to this question, I discovered a really strange behaviour of the Java Hotspot optimizer. The observed behaviour can at least be seen in the Oracle VM ...
3
votes
1answer
171 views
printing Java hotspot JIT assembly code
I wrote a very stupid test class in Java:
public class Vector3 {
public double x,y,z ;
public Vector3(double x, double y, double z) {
this.x=x ; this.y=y ; this.z=z ;
}
public ...
1
vote
1answer
58 views
Accessing website through a private address
I created java web Application and deployed it at glassfish server.
I am running my website server using android phone hotspot. Any other client machine is unable to access it as it provides me with a ...
0
votes
1answer
44 views
Coovachilli can't read encrypted password on radius table
I've install and configure coovachili with freeradius.
Everything working well, user can get captive portal before browse to internet.
But i get problem, on radius table password field is ...
4
votes
1answer
103 views
how to disable inlining optimization with sun jvm?
I need to do some experiments showing the effect of inlining on my code. Anybody knows how to disable inlining with sun jvm? I searched ...
0
votes
0answers
73 views
How to configure Coovachilli LDAP
I have installed coovachilli and freeradius server using mysql database.
Everything running well, coovachilli can give authentification from radius database.
Then i configure freeradius to ...
0
votes
1answer
49 views
Users to retrieve order description once Paypal payment has been made
I have a "hotspot" system where the user pays through PayPal for Internet access. Once payment has been made, you are directed back to the hotspot and provided with your code.
The problem I am having ...
0
votes
0answers
66 views
Installation coovachili trouble on GLIBC_2.15
I've installed and configure covachill on my ubuntu 11.04.
everything have i configured,
But when i try to restart my chili i got error message like bellow :
Starting chilli: /usr/sbin/chilli: ...
0
votes
0answers
29 views
java frames for Oracle Hotspot 1.6 at hs_err
there is a crash generated by a bad behavior of one application that uses lucene.
OS: RHEL 5.8 64bits
I see the hs_err generated by OpenJDK 1.6 update 22 64 bits, prints the current stack trace (see ...
2
votes
2answers
365 views
Programmatically connect to an android device in Portable hotspot
I have succesfully created a portable hotspot programmatically on my device with a specified SSID. Now I want to connect to it from another device! I'm using this code:
WifiConfiguration conf = ...
1
vote
1answer
195 views
Access point in nexus 7 and nexus 10 issue
I'm developing an app that needs that the device creates an access point. I'm testing the code on a Nexus 7 (Android 4.2.1) and a Nexus 10 (4.2.2) and I get the same problem in both. I manage to ...
9
votes
1answer
133 views
Why can you throw anything in Java? [closed]
In Java theoretically you can throw only Throwables.
This is allowed by the language and checked during class-loading. But if you disable class checking
java -Xverify:none -cp . ...
0
votes
0answers
178 views
mikrotik free radius “You are not allowed to connect to this NAS”
i'm trying to create hotspot using mikrotik 5.1.8 with free radius from dmasoftlab.
I've installed free radius and mikrotik successfully, but when i use Radius client on my hotspot when client try to ...
1
vote
1answer
401 views
Concurrent Mark Sweep (CMS) GC occurs when Minor Collection runs
We are using Java 1.6 Hotspot JVM. CMS GC should run when the Old Gen is nearing capacity. Minor Collection runs when Young Gen is nearing capacity.
However, on one server we are getting a CMS GC ...
2
votes
1answer
2k views
Create an access point with the Nexus 7
What's the aim?
Create an Access Point with an Android device (Nexus 7 in my case). The final purpose is to connect a WiFly card to this created network and exchange data between these devices.
...
4
votes
1answer
75 views
Can Hotspot be configured to preserve its statistics between runs? [duplicate]
The HotSpot compiler learns about your code as your process runs. Is there any way to configure it to persist what it's learned, so that the next time the process starts (assuming no jars or class ...
9
votes
2answers
176 views
Which Java HotSpot JIT compiler is running?
I would like to know if my no VM argument invocation of HotSpot Java is running with -client, -server, or tiered compilation options. When I supply no VM arguments, which one is chosen by default? Is ...
0
votes
2answers
65 views
ImageMap with mouseout [duplicate]
hi i asked this once but couldn't get an answer i have this image map of a building see here =>> http://projectpano.netii.net/imagemaper.html and it has 5 hotspots on the building each of them has a ...
0
votes
0answers
45 views
onmouseout of hotspot
I have a building map that you can see here
http://projectpano.netii.net/imagemaper.html
If you mouseover the hotspot, the plan in the right corner will show. But, if you mouseout of the hotspot ...
0
votes
0answers
25 views
Audio hotspots / iFrames in Chrome and Safari
We are using a hotspot map plugin with a wordpress site all on a fullscreen slider, mainly with audio use set in tool tips using iframes. They all work perfectly in FF, but when played in chrome or ...
2
votes
0answers
53 views
Where is object's hash code stored if biased-locking is enabled in HotSpot JVM?
As far as I know an object's hash code is normally stored in the header word of the object, which, for example, may have the following layout in HotSpot:
| hash code | age | 0 | 01 |
According to ...
0
votes
0answers
150 views
android as hotspot can't send udp
I create a hotspot and the IP is "192.168.43.1",when I send UDP to "192.168.43.105",it has error like this. It can receive UDP,and it work well at WIFI network.
02-05 18:02:15.718: ...
4
votes
1answer
124 views
How to enforce/ensure Java hotspot JIT compilation at a certain moment
The problem i'm interested in at the moment is profiling/optimizing some piece of code. General recommendation for profiling with Java is "run", "wait for some time for hotspot JIT compiler to do its ...

