element tag

3 questions


2 answers
93 views
0
Is there a way not to use XMLRootElement in jaxb2marshaller?

Is there a way to specify the root element without using XMLRootElement in jaxb2marshaller?I want to give the root element various depending on the conditions at the controller end XMLRootElement does...


1 answers
43 views
0
How do you compare your own elements with each other in a Java array?

int arr[] = new int[6];for (int k = 0; k < 5; k++) { arr[k] = (int)(Math.random()*100); }for(int s = 0;s<5;s++) { while(arr[s] == 0) { arr[s] = (int)(Math.random()*100); } wh...

1 years ago

1 answers
48 views
0
DOM navigation error? getElementsByTagName error

If you open the developer tool to get the video tag from Naver blogs or cafes and run document.getElementsByTagName('video') or document.querySelectorAll('video') you will find a strange empty array. ...

2 years ago

© 2024 OneMinuteCode. All rights reserved.