tanyaofei

Results 36 comments of tanyaofei

这个是由于 jdk9 以上引入了 export module 的概念,启动参数添加这个可以解决 `--add-opens java.base/jdk.internal.loader=ALL-UNNAMED` 例如:./xjar java --add-opens java.base/jdk.internal.loader=ALL-UNNAMED -jar ./*.xjar [https://www.coder.work/article/61641](url)

I have the same problem. I am using JDK11 and SpringBoot 2.7

I found out that the exception cause by `CompletableFuture.supplyAsync(() -> SpringApplication.run(this.getClass(), savedArgs) )...` at AbstractJavaFxApplicationSupport#init() after I give a specify Executor, problem solved ```java /* * (non-Javadoc) * * @see...

> Can you send me the file [1.parquet.zip](https://github.com/rocketlaunchr/dataframe-go/files/8377859/1.parquet.zip)

> Can you create the DataFrame from this package, export it to paraquet and then try and import it back? I tried it at the first time, it seems like...

> A Parquet file is not text based. Can you try importing the file back. ```go df := dataframe.NewDataFrame(dataframe.NewSeriesString("A", nil, []string{"1", "2", "3"})) file, _ := os.Create("1.parquet") _ = exports.ExportToParquet(context.Background(),...

> A Parquet file is not text based. Can you try importing the file back. My `parquet-go` version is v1.6.2: `github.com/xitongsys/parquet-go v1.6.2`

> I tried opening your file and it worked: > > ``` > package main > > import "github.com/xitongsys/parquet-go-source/local" > import "github.com/rocketlaunchr/dataframe-go/imports" > import "fmt" > import "context" > >...

I use `github.com/apache/thrift v0.0.0-20181112125854-24918abba929`, `github.com/xitongsys/parquet-go v1.5.2` and it works.