Ну я запускаю на сервере glassfish-4.1.1 этот war файл только если в нетбинсе стартую javaDB, тоесть мне нужно делать либо встроенную в проект базуданных либо существующуюю как то подключить
Написал вот так, но добавляется только один FrameLayout и в нем прям видно как в цикле мельлкают все видео. Останавливается на последнем
private int generateViewId() {
AtomicInteger sNextGeneratedId = new AtomicInteger(1);
for (;;) {
final int result = sNextGeneratedId.get();
// aapt-generated IDs have the high byte nonzero; clamp to the range under that.
int newValue = result + 1;
if (newValue > 0x00FFFFFF) newValue = 1; // Roll over to 1, not 0.
if (sNextGeneratedId.compareAndSet(result, newValue)) {
return result;
}
}
}
@Override
protected void onPostExecute(Spanned spanned) {
super.onPostExecute(spanned);
title.setText(strTitle);
textView.setText(spanned);
if (urlVideo!=null){
FrameLayout frameLayout;
for (String url : urlVideo) {
frameLayout = new FrameLayout(NewsContent.this);
linearLayout.addView(frameLayout);
int i = generateViewId();
frameLayout.setId(i);
getSupportFragmentManager().beginTransaction().replace(i,VideoFragment.newInstance(url)).commit();
}
}
progressDialog.dismiss();
}
Например так ругается на
getSupportFragmentManager().beginTransaction().replace(getSupportFragmentManager().findFragmentByTag(id).getId(), f).commit();
НулПОинтер ловит. Я конечно понимаю почему он тут, но не знаю как правильно написать.
@Override
protected void onPostExecute(Spanned spanned) {
super.onPostExecute(spanned);
title.setText(strTitle);
textView.setText(spanned);
if (urlVideo!=null){
for (String id : urlVideo) {
VideoFragment f = VideoFragment.newInstance(id);
FrameLayout frameLayout = new FrameLayout(NewsContent.this);
frameLayout.setTag(id);
nat 1 config log if vr0 reset same_ports redirect_port tcp 192.168.0.192:3389 3389
add 001 allow all from 192.168.0.4 to me
add 101 pass all from any to any via lo0
add 102 deny all from any to 127.0.0.0/8
add 103 deny all from 127.0.0.0/8 to any
add 104 nat 1 ip from any to any via vr0
add 105 deny all from 192.168.0.34,192.168.0.67,192.168.0.223,192.168.0.66,192.168.2.55 to any via rl0
add 107 allow tcp from 192.168.0.208 to 21
add 106 deny all from 192.168.0.208 to any
add 108 deny all from 115.238.73.9 to any
Message on Terminal_KTVRAY: Your guest
operating system is Windows Server 2003 and
you have one or more virtual SCSI devices
installed in your virtual machine. Please be aware
that Windows Server 2003 does not support the
BusLogic SCSI adapter that VMware ESX currently
uses for its virtual SCSI devices. If you have not
done so already, you will need to install our
driver in the virtual machine. You can download
the driver from our Web site at
"www.vmware.com/info?id=43". Click OK
to continue or Cancel to abort.
info
14.05.2015 15:00:25
root
Мне кажется это связано с этой ошибкой