我将commons-io-2.6.jr
复制到了libs文件夹中,并对其进行了解压缩。但是该图标显示课程已被锁定。 FileUtils
类不能使用。
答案 0 :(得分:0)
您无需解压缩jar文件即可使用它。
您可以通过Gradle导入commons-io库,而不必使用jar。
将此行添加到您应用的import numpy as np
cx = np.array([0, 0, 3, 3])
cy = np.array([0, 3, 4, 0])
M = len(cx)
for j in range(M):
wx = 0
wy = 0
for i in range(M):
if i == j:
continue
x = cx[i] - cx[j]
y = cy[i] - cy[j]
wx += -x / np.sqrt(x ** 2 + y ** 2)
wy += -y / np.sqrt(x ** 2 + y ** 2)
Move = (
wx / np.sqrt(wx ** 2 + wy ** 2),
wy / np.sqrt(wx ** 2 + wy ** 2),
)
print(Move)
文件中:
build.gradle
如果您确实要使用jar文件,则可以按照here的说明通过Gradle导入dependencies {
implementation 'commons-io:commons-io:2.6'
// other libs...
}
文件夹。