问题列表 - 第20117页

6
推荐指数
2
解决办法
1万
查看次数

让程序立即在命令行返回,因此它不依赖于启动它的shell

从命令行启动时,某些程序会立即返回,例如Firefox.大多数实用程序(以及我编写的所有程序)都与创建它们的shell绑定在一起.如果你控制命令行,程序就死定了.

你有什么必须添加到程序或shell脚本以获得立即返回的行为?我想我在那里问了两个问题,一个用于shell脚本,一个用于一般,如果它们不同的话.我特别想知道是否有办法让一个可执行的jar来做.

我几乎不好意思问一个,但我自己找不到答案.

谢谢!

linux shell command-line return process

5
推荐指数
2
解决办法
3572
查看次数

Django dumpdata UTF-8(Unicode)

有没有一种从数据库转储UTF-8数据的简单方法?

我知道这个命令:

manage.py dumpdata > mydata.json
Run Code Online (Sandbox Code Playgroud)

但是我在mydata.json文件中得到的数据,Unicode数据看起来像:

"name": "\u4e1c\u6cf0\u9999\u6e2f\u4e94\u91d1\u6709\u9650\u516c\u53f8"
Run Code Online (Sandbox Code Playgroud)

我想看一个真正的Unicode字符串,如????????(中文).

django utf-8 dumpdata

16
推荐指数
5
解决办法
8159
查看次数

如何防止涉及嵌入式iframe的CSRF/XSRF攻击?

有没有办法限制父母在iframe中允许做什么?我正在寻找的是一个围绕Javascript的安全模型,它看起来像:

...
<script type="text/javascript" src="jquery-1.3.2.min.js"></script>
<script type="text/javascript">
function AllowedToAccess()
{
}

function NotAllowedToAccess()
{
}
</script>
<security>
iframe {
  Deny All;
  Allow javascript:AllowedToAccess();
}

iframe script.untrusted {
  Deny All;
}
</security>
<iframe src="trusted.html"></iframe>
<iframe src="http://www.somesite.com/trusted.html"></iframe>
...
Run Code Online (Sandbox Code Playgroud)

'trusted.html'看起来像:

<html><body>
<script type="text/javascript">
function InternalCall()
{
  window.parent.AllowedToAccess();
}

function InternalCall2()
{
  window.parent.NotAllowedToAccess();
}
</script>
<security>
javascript:window.parent {
  Allow javascript:document.body.offsetHeight;
  Allow javascript:document.title;
}

script.untrusted {
  Deny All;
}
</security>
<script type="text/javascript">
window.parent.AllowedToAccess();
InternalCall();
</script>
<script type="text/javascript" src="http://www.anothersite.com/untrusted.js" secclass="untrusted"></script>
<script type="text/javascript">
window.parent.NotAllowedToAccess();
InternalCall2();
window.parent.jQuery(window.parent.body).append('<div id="badid"></div>'); …
Run Code Online (Sandbox Code Playgroud)

javascript security iframe csrf

2
推荐指数
1
解决办法
4015
查看次数

getIntExtra始终返回默认值

我试图使用intent在活动之间传递一个整数.源活动使调用info.id成为ListView中的选定项.

Intent intent = new Intent(myActivity.this, newClass.class); 
intent.putExtra("selectedItem", info.id); 
this.startActivity(intent); 
Run Code Online (Sandbox Code Playgroud)

目标活动使用getIntent然后调用来检索intent

int iSelectedItem = intent.getIntExtra("selectedItem", -1); 
Run Code Online (Sandbox Code Playgroud)

iSelectedItem始终为-1而不是传递给putExtra的值.有人可以告诉我我做错了什么或者我是否误解了意图的使用?

android

17
推荐指数
2
解决办法
4万
查看次数

MySQL中的最大表数

MySQL可以处理的最大表数是多少?

mysql

17
推荐指数
4
解决办法
2万
查看次数

如何调用通过inspect.getmembers发现的方法?

import re
import sys
import inspect
import testcases

testClass = re.compile(r'.*Case$')
testMethod = re.compile(r'.*Test$')

for class_name, class_obj in inspect.getmembers(testcases, inspect.isclass):
    if testClass.match(class_name):
        for method_name, method_obj in inspect.getmembers(class_obj, inspect.ismethod):
            if testMethod.match(method_name):
                # RIGHT HERE I WOULD LIKE TO INVOKE method_name
Run Code Online (Sandbox Code Playgroud)

python inspect

2
推荐指数
1
解决办法
1211
查看次数

xcode"compile source as"覆盖特定文件

我有一个项目必须设置为"Objective-C++"的"编译源为"值(不,"根据文件类型"将不能在我的主项目中工作).我遇到的问题是我从一个框架(特别是OpenFeint)获得的文件,当编译为"Objective-C++"时会出现编译错误.

error: pointer of type 'void *' used in arithmetic
Run Code Online (Sandbox Code Playgroud)

我可以在一个测试项目中编译该文件,该项目设置为"根据文件类型"为"编译源为"值.所以我想知道如何设置一个特定的文件来编译为Objective-C?如果我可以在我的实际项目中将这个文件编译为Objective-C,那么一切都应该完美和谐地工作.

任何帮助表示赞赏.

谢谢!

xcode compiler-errors objective-c++

3
推荐指数
1
解决办法
1726
查看次数

无法将DBNULL值插入sql server

为什么我会收到此错误?

Object cannot be cast from DBNull to other types.
Run Code Online (Sandbox Code Playgroud)

当我在sql server 2005中为numeric数据类型插入null值时

这是我的代码,

 if (MeasurementTr.Visible == true)
    {
        materialIn.measurementId = Convert.ToInt64(DlMeasurement.SelectedValue.ToString());
    }
    else
    {
        materialIn.measurementId = Convert.ToInt64(DBNull.Value);
    }
Run Code Online (Sandbox Code Playgroud)

编辑:

这是正确的吗??

 materialIn.measurementId = (Convert.ToInt64(DlMeasurement.SelectedValue.ToString()) != 0) ? Convert.ToInt64(DlMeasurement.SelectedValue.ToString()) : 0;
Run Code Online (Sandbox Code Playgroud)

c# dbnull sql-server-2005

3
推荐指数
1
解决办法
6119
查看次数

Java - Tuckee URL Rewrite过滤器如何更改请求的URL?

我想为我的应用程序编写自己的url重写版本,但我不知道如何更改过滤器中传入请求的url.

我尝试转发到重写的url,但这样就可以调用链中的所有其他过滤器.

java java-ee servlet-filters

5
推荐指数
1
解决办法
2387
查看次数